José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | 4 yıl önce | |
---|---|---|
.. | ||
index.js | 4 yıl önce | |
license | 4 yıl önce | |
package.json | 4 yıl önce | |
readme.md | 4 yıl önce |
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