hz-zhhq-web/node_modules/map-obj
zzyuan 0ed9577d7c 前端提交4 2025-02-25 13:46:30 +08:00
..
index.js 前端提交4 2025-02-25 13:46:30 +08:00
license 前端提交4 2025-02-25 13:46:30 +08:00
package.json 前端提交4 2025-02-25 13:46:30 +08:00
readme.md 前端提交4 2025-02-25 13:46:30 +08:00

readme.md

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