dockerized_openAger/nodered/rootfs/data/node_modules/invert-kv
valki 664c6d8ca3 Intial Commit 2020-10-17 18:42:50 +02:00
..
index.js Intial Commit 2020-10-17 18:42:50 +02:00
license Intial Commit 2020-10-17 18:42:50 +02:00
package.json Intial Commit 2020-10-17 18:42:50 +02:00
readme.md Intial Commit 2020-10-17 18:42:50 +02:00

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