Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bjarneo/object-swap

Switch the object key and value. It doesn't work with nested objects.
https://github.com/bjarneo/object-swap

Last synced: 3 days ago
JSON representation

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

Awesome Lists containing this project

README

        

object-swap
======

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

Installation
------
```
$ npm install --save object-swap
```

Usage
------
```javascript
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.