lix-website/themes/lix/assets/bootstrap/node_modules/sort-keys-length
2024-04-26 22:49:34 -06:00
..
node_modules/sort-keys initial commit of template 2024-04-26 22:49:34 -06:00
index.js initial commit of template 2024-04-26 22:49:34 -06:00
LICENSE.md initial commit of template 2024-04-26 22:49:34 -06:00
package.json initial commit of template 2024-04-26 22:49:34 -06:00
README.md initial commit of template 2024-04-26 22:49:34 -06:00

sort-keys-length Build Status

Sort object keys by length

Install

$ npm install --save sort-keys-length

Usage

var sortKeysLength = require('sort-keys-length');

sortKeysLength.asc({ ab: 'x', a: 'y', abc: 'z' });
//=> { a: 'y', ab: 'x', abc: 'z' }

sortKeysLength.desc({ ab: 'x', a: 'y', abc: 'z' });
//=> { abc: 'z', ab: 'x', a: 'y' }

API

.asc

Ascending sort.

.desc

Descending sort.

License

MIT © Kevin Mårtensson