Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

obj-invert

bendrucker21MIT1.0.2

Swap an object's keys with its values

object, invert, key, value, swap

readme

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