object-swap-key-val
v1.0.0
Published
swap between object keys and values
Downloads
8
Maintainers
Readme
Usage
$ npm install object-swap-key-val
var swapKeyVal = require('object-swap-key-val');
console.log(swapKeyVal({foo: 'bar', bob: 'bobette'})); // {bar: 'foo', bobette: 'bob'}
This assumes you have a simple object with strings as values. If you want it to handle more scenarios add an issue or even better, send a PR.