solorice/vscodium/extensions/ritwickdey.liveserver-5.7.5/node_modules/map-obj
2022-04-28 21:17:01 +03:00
..
index.js Added vscodium 2022-04-28 21:17:01 +03:00
license Added vscodium 2022-04-28 21:17:01 +03:00
package.json Added vscodium 2022-04-28 21:17:01 +03:00
readme.md Added vscodium 2022-04-28 21:17:01 +03:00

map-obj Build Status

Map object keys and values into a new object

Install

$ npm install --save map-obj

Usage

var mapObj = require('map-obj');

var newObject = mapObj({foo: 'bar'}, function (key, value, object) {
	// first element is the new key and second is the new value
	// here we reverse the order
	return [value, key];
});
//=> {bar: 'foo'}

License

MIT © Sindre Sorhus