|
před 3 týdny | |
---|---|---|
.. | ||
index.d.ts | před 3 týdny | |
index.js | před 3 týdny | |
license | před 3 týdny | |
package.json | před 3 týdny | |
readme.md | před 3 týdny |
Invert the key/value of an object. Example:
{foo: 'bar'}
→{bar: 'foo'}
$ npm install invert-kv
const invertKeyValue = require('invert-kv');
invertKeyValue({foo: 'bar', '🦄': '🌈'});
//=> {bar: 'foo', '🌈': '🦄'}