Package Exports
- sortobject
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 (sortobject) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Sort Object
Returns a copy of an object, sorted deeply by its keys, without mangling any arrays inside of it
Usage
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
- Install:
npm install --save sortobject
- Import:
import pkg from ('sortobject')
- Require:
const pkg = require('sortobject').default
import pkg from 'https://unpkg.com/sortobject@^4.5.0/edition-deno/index.ts'
<script type="module">
import pkg from '//cdn.pika.dev/sortobject/^4.5.0'
</script>
<script type="module">
import pkg from '//unpkg.com/sortobject@^4.5.0'
</script>
<script type="module">
import pkg from '//dev.jspm.io/sortobject@4.5.0'
</script>
Editions
This package is published with the following editions:
sortobject/source/index.ts
is TypeScript source code with Import for modulessortobject
aliasessortobject/edition-esnext/index.js
sortobject/edition-esnext/index.js
is TypeScript compiled against ESNext for Node.js with Require for modulessortobject/edition-browsers/index.js
is TypeScript compiled against ES2019 for web browsers with Import for modulessortobject/edition-deno/index.ts
is TypeScript source code made to be compatible with Deno
History
Discover the release history by heading on over to the HISTORY.md
file.
Contribute
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Backers
Maintainers
These amazing people are maintaining this project:
Sponsors
These amazing people have contributed finances to this project:
Become a sponsor!
Contributors
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.
License
Unless stated otherwise all works are:
- Copyright © 2012+ Bevry Pty Ltd
and licensed under: