Arrange Keys

Build Status NPM version Dependency Status Development Dependency Status
Gittip donate button Flattr donate button PayPayl donate button BitCoin donate button Wishlist browse button

Returns a copy of a JavaScript object with the keys arranged in a specified order. Useful for formatting JSON files.

Install

NPM

Usage

var data = {
    a: 1,
    b: 2,
    c: 3,
    z: 4
}
console.log(
    require('arrangekeys')(data, 'b c a')
) /* {
    b: 2,
    c: 3,
    a: 1,
    z: 4
} */

History

Discover the change 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

No sponsors yet! Will you be the first?

Gittip donate button Flattr donate button PayPayl donate button BitCoin donate button Wishlist browse button

Contributors

No contributors yet! Will you be the first? Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

License

Licensed under the incredibly permissive MIT license

Copyright © 2014+ Bevry Pty Ltd us@bevry.me (http://bevry.me)