obj-invert

1.0.2 • Public • Published

obj-invert Build Status

Swap an object's keys with its values

Install

$ npm install --save obj-invert

Usage

var invert = require('obj-invert')
 
invert({foo: 'bar'})
//=> {bar: 'foo'}

API

invert(obj) -> object

Returns a new object with the key/value pairs from obj swapped.

obj

Required
Type: object

An object to invert. obj will not be modified.

License

MIT © Ben Drucker

Package Sidebar

Install

npm i obj-invert

Weekly Downloads

0

Version

1.0.2

License

MIT

Last publish

Collaborators

  • bendrucker