@cjser/sort-keys__v5_1_0
v5.1.0-cjser.2
Published
Sort the keys of an object
Maintainers
Readme
sort-keys
Sort the keys of an object
Useful to get a deterministically ordered object, as the order of keys can vary between engines.
Install
npm install sort-keysUsage
import sortKeys from 'sort-keys';
sortKeys({c: 0, a: 0, b: 0});
//=> {a: 0, b: 0, c: 0}
sortKeys({b: {b: 0, a: 0}, a: 0}, {deep: true});
//=> {a: 0, b: {a: 0, b: 0}}
sortKeys({b: [{b: 0, a: 0}], a: 0}, {deep: true});
//=> {a: 0, b: [{a: 0, b: 0}]}
sortKeys({c: 0, a: 0, b: 0}, {
compare: (a, b) => -a.localeCompare(b)
});
//=> {c: 0, b: 0, a: 0}
sortKeys([{b: 0, a:2}], {deep: true});
//=> [{a: 2, b: 0}]API
sortKeys(object, options?)
Returns a new object with sorted keys.
object
Type: object | Array
options
Type: object
deep
Type: boolean
Default: false
Recursively sort keys, including keys of objects inside arrays.
compare
Type: Function
cjser
This package is a CommonJS-compatible build generated by cjser for projects that still need require() support. The source version matches the original npm package version, with a cjser prerelease suffix for this generated build.
Original repository: https://github.com/sindresorhus/sort-keys
