Created
July 28, 2011 14:49
-
-
Save jed/1111672 to your computer and use it in GitHub Desktop.
JSON.stringify replacer that sorts object keys
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
replacer = (key, val) -> | |
if val instanceof Object | |
keys = Object.keys(val).sort().map (key) -> | |
"\"#{key}\":#{JSON.stringify val[key], replacer}" | |
"{#{keys}}" | |
else val |
@ncr Thanks, that worked for me, but had to add a null
check. In regular JS:
function replacer (key, value) {
if (value == null || value.constructor != Object) {
return value
}
return Object.keys(value).sort().reduce((s,k) => {s[k] = value[k]; return s}, {})
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
indeed, assuming v8 doesn't change their iteration implementation. i like the use of
reduce
too (though not a huge fan of coffee syntax for arguments following functions).