-
Notifications
You must be signed in to change notification settings - Fork 31
Update to v0.15.0 #81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
JordanMartinez
merged 9 commits into
purescript:master
from
working-group-purescript-es:es-modules-libraries
Mar 14, 2022
Merged
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
30120f3
Migrated FFI to ES modules via 'lebab'
JordanMartinez 25077ad
Removed '"use strict";' in FFI files
JordanMartinez d6b5e9f
Update to CI to use 'unstable' purescript
JordanMartinez 291dc1e
Update pulp to 16.0.0-0 and psa to 0.8.2
JordanMartinez 7c1c51e
Update Bower dependencies to master
JordanMartinez d69fef3
Update .eslintrc.json to ES6
JordanMartinez ef01c6e
Remove forall proxy workaround
JordanMartinez e2dbb15
Added changelog entry
JordanMartinez cbd40f0
Update CHANGELOG.md
JordanMartinez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,44 @@ | ||
"use strict"; | ||
|
||
exports.copyRecord = function(rec) { | ||
export function copyRecord(rec) { | ||
var copy = {}; | ||
for (var key in rec) { | ||
if ({}.hasOwnProperty.call(rec, key)) { | ||
copy[key] = rec[key]; | ||
} | ||
} | ||
return copy; | ||
}; | ||
} | ||
|
||
exports.unsafeInsert = function(l) { | ||
export function unsafeInsert(l) { | ||
return function(a) { | ||
return function(rec) { | ||
rec[l] = a; | ||
return rec; | ||
}; | ||
}; | ||
}; | ||
} | ||
|
||
exports.unsafeModify = function(l) { | ||
export function unsafeModify(l) { | ||
return function (f) { | ||
return function(rec) { | ||
rec[l] = f(rec[l]); | ||
return rec; | ||
}; | ||
}; | ||
}; | ||
} | ||
|
||
exports.unsafeDelete = function(l) { | ||
export function unsafeDelete(l) { | ||
return function(rec) { | ||
delete rec[l]; | ||
return rec; | ||
}; | ||
}; | ||
} | ||
|
||
exports.unsafeRename = function(l1) { | ||
export function unsafeRename(l1) { | ||
return function (l2) { | ||
return function (rec) { | ||
rec[l2] = rec[l1]; | ||
delete rec[l1]; | ||
return rec; | ||
}; | ||
}; | ||
}; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.