Invert the key/value of an object. Example: `{foo: 'bar'}` → `{bar: 'foo'}`
npm install invert-kv> Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}
```
$ npm install invert-kv
`js
import invertKeyValue from 'invert-kv';
invertKeyValue({foo: 'bar', '🦄': '🌈'});
//=> {bar: 'foo', '🌈': '🦄'}
``
---