JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11
  • Score
    100M100P100Q38447F
  • License ISC

sorts object by keys

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-sort
var 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}