npm.io
1.0.1 • Published 11 years ago

sortkeys

Licence
Version
1.0.1
Deps
0
Vulns
0
Weekly
0
Stars
1

sortkeys

Build Status

This function recursively sorts the keys of an object according to Object.keys(obj).sort().

An example should explain it:


var sortkeys = require('sortkeys');

var objToSort = {
  d : "is for dog"
  , c : "is for cat"
  , f : "is for fig"
  , a : "is for ant"
};

console.log(sortkeys(objToSort));

/*
{ a: 'is for ant',
  c: 'is for cat',
  d: 'is for dog',
  f: 'is for fig' }
*/

license

MIT