Package Exports
- object-sort
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (object-sort) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
object-sort
Returns new object with sorted keys order.
Usage
npm install object-sortvar objectSort = require('object-sort');
var obj = {b: 3, c: 5, a: 1};
objectSort(obj); // {a: 1, b: 3, c: 5}
// With reverse flag
objectSort(obj, true); // {c: 5, b: 3, a: 1}