Arrange Keys
Returns a copy of a JavaScript object with the keys arranged in a specified order. Useful for formatting JSON files.
Usage
Complete API Documentation.
import arrangeKeys from 'arrangekeys'
console.log(
arrangeKeys(
{
z: 1,
a: 2,
b: 3,
c: 4,
},
'b c'
)
)
console.log(
arrangeKeys(
{
z: 1,
a: 2,
b: 3,
c: 4,
},
'b c',
true
)
)
console.log(
arrangeKeys({
z: 1,
a: 2,
b: 3,
c: 4,
})
)
Install
- Install:
npm install --save arrangekeys
- Import:
import pkg from ('arrangekeys')
- Require:
const pkg = require('arrangekeys').default
<script type="module">
import pkg from '//cdn.pika.dev/arrangekeys/^4.0.0'
</script>
<script type="module">
import pkg from '//unpkg.com/arrangekeys@^4.0.0'
</script>
<script type="module">
import pkg from '//dev.jspm.io/arrangekeys@4.0.0'
</script>
This package is published with the following editions:
arrangekeys/source/index.ts
is TypeScript source code with Import for modulesarrangekeys/edition-browsers/index.js
is TypeScript compiled against ESNext for web browsers with Import for modulesarrangekeys
aliases arrangekeys/edition-esnext/index.js
arrangekeys/edition-esnext/index.js
is TypeScript compiled against ESNext for Node.js with Require for modules
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:
No sponsors yet! Will you be the first?
Contributors
These amazing people have contributed code to this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
License
Unless stated otherwise all works are:
and licensed under: