tree: 67117583e1036340052908f73717037f751d8086 [path history] [tgz]
  1. index.js
  2. license
  3. package.json
  4. readme.md
src/cobalt/debug/remote/devtools/node_modules/invert-kv/readme.md

invert-kv Build Status

Invert the key/value of an object. Example: {foo: 'bar'}{bar: 'foo'}

Install

$ npm install invert-kv

Usage

const invertKv = require('invert-kv');

invertKv({foo: 'bar', unicorn: 'rainbow'});
//=> {bar: 'foo', rainbow: 'unicorn'}

License

MIT © Sindre Sorhus