Returns a copy of an object, sorted deeply by its keys, without mangling any arrays inside of it
import sortObject from 'sortobject'
const fixture = {
c: true,
a: true,
b: null,
d: [
{
c: true,
a: true,
b: null,
},
{
c: true,
a: true,
b: null,
d: [
{
c: true,
a: true,
b: null,
},
],
},
],
}
const actual = sortObject(fixture)
console.log(JSON.stringify(actual, null, 4)) /* {
"a": true,
"b": null,
"c": true,
"d": [
{
"a": true,
"b": null,
"c": true
},
{
"a": true,
"b": null,
"c": true,
"d": [
{
"a": true,
"b": null,
"c": true
}
]
}
]
} */
- Install:
npm install --save sortobject
- Import:
import pkg from ('sortobject')
- Require:
const pkg = require('sortobject').default
import pkg from 'https://unpkg.com/sortobject@^4.13.0/edition-deno/index.ts'
<script type="module">
import pkg from '//cdn.skypack.dev/sortobject@^4.13.0'
</script>
<script type="module">
import pkg from '//unpkg.com/sortobject@^4.13.0'
</script>
<script type="module">
import pkg from '//dev.jspm.io/sortobject@4.13.0'
</script>
This package is published with the following editions:
-
sortobject/source/index.ts
is TypeScript source code with Import for modules -
sortobject/edition-browsers/index.js
is TypeScript compiled against ES2019 for web browsers with Import for modules -
sortobject
aliasessortobject/edition-esnext/index.js
-
sortobject/edition-esnext/index.js
is TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules -
sortobject/edition-esnext-esm/index.js
is TypeScript compiled against ESNext for Node.js 12 || 13 || 14 with Import for modules -
sortobject/edition-deno/index.ts
is TypeScript source code made to be compatible with Deno
Discover the release history by heading on over to the HISTORY.md
file.
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
These amazing people are maintaining this project:
These amazing people have contributed finances to this project:
Become a sponsor!
These amazing people have contributed code to this project:
- Benjamin Lupton — view contributions
- James Newell
- James Newell — view contributions
- Serge Havas — view contributions
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Unless stated otherwise all works are:
- Copyright © 2012+ Bevry Pty Ltd
and licensed under: