Socket
Socket
Sign inDemoInstall

sorted-json

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sorted-json

Sort keys and array elements in a JSON.


Version published
Weekly downloads
1.4K
decreased by-2.74%
Maintainers
1
Install size
10.1 kB
Created
Weekly downloads
 

Readme

Source

sorted-json-js

Sort keys and array elements in a JSON.

Quick Example:

var sortedJSON = require('sorted-json');

var obj = {
  numberArray: [3, 1, 2],
  anotherJSON: {
    stringArray: ['cat', 'book', 'apple'],
    numberA: 2,
    numberB: 1
  },
  number1: 2,
  number2: 1
};

var sortedObj = sortedJSON.sortify(obj);
console.log(JSON.stringify(sortedObj, null, '  '));

/* Output:
  {
    "anotherJSON": {
      "numberA": 2,
      "numberB": 1,
      "stringArray": [
        "apple",
        "book",
        "cat"
      ]
    },
    "number1": 2,
    "number2": 1,
    "numberArray": [
      1,
      2,
      3
    ]
  }
*/

Functions:

sortify(obj [, options])

obj (object)

The object to sort

options (object)

An object which defaults to

{
  sortBy   : undefined, // Specifies a function that defines the sort order. Same to `compareFunction` parameter in `Array.prototype.sort(compareFunction)`
  sortKey  : true,      // Sort the keys in `obj` or not
  sortArray: true,      // Sort the array elements in `obj or not

  stringify: false,     // Output the stringified `obj` or not (Using `JSON.stringify()`)
  replacer : null,      // Parameter for `JSON.stringify()`
  space    : null,      // Parameter for `JSON.stringify()`
}

stringify(obj, compareFunction) DEPRECATED

obj (object)

The object to sort

compareFunction (function)

Specifies a function that defines the sort order. Same to compareFunction parameter in Array.prototype.sort(compareFunction).

Install:

npm install sorted-json

Test:

npm test

License

MIT

Keywords

FAQs

Last updated on 18 Jun 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc