1.0.0 • Published 8 years ago

object-swap v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

object-swap

What

Switch the object key and value. It doesn't work with nested objects.

Installation

$ npm install --save object-swap

Usage

var swap = require('object-swap');

console.log(swap({
    a: 1,
    b: 2,
    c: 3
}));

// { '1': 'a', '2': 'b', '3': 'c' }

Test

npm test

Contribution

Contributions are appreciated.

License

MIT-licensed. See LICENSE.