root 3bf41bf355 update | hace 1 año | |
---|---|---|
.. | ||
index.js | hace 1 año | |
package.json | hace 1 año | |
readme.md | hace 1 año |
Invert the key/value of an object. Example:
{foo: 'bar'}
→{bar: 'foo'}
$ npm install --save invert-kv
var invertKv = require('invert-kv');
invertKv({foo: 'bar', unicorn: 'rainbow'});
//=> {bar: 'foo', rainbow: 'unicorn'}
MIT © Sindre Sorhus