weekend project to make a simple web app using Typescript/Ionic/Angular.
Vincent Sima 1517fc9a2f done 6 年之前
..
index.js done 6 年之前
package.json done 6 年之前
readme.md done 6 年之前

readme.md

invert-kv Build Status

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

Install

$ npm install --save invert-kv

Usage

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

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

License

MIT © Sindre Sorhus