Package Exports
- map-obj
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (map-obj) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
map-obj 
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