huituanxueqian 7740728225 commit | vor 1 Jahr | |
---|---|---|
.. | ||
index.js | vor 1 Jahr | |
license | vor 1 Jahr | |
package.json | vor 1 Jahr | |
readme.md | vor 1 Jahr |
Map object keys and values into a new object
$ npm install --save map-obj
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'}
MIT © Sindre Sorhus