JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 39821501
  • Score
    100M100P100Q226367F
  • License MIT

Map object keys and values into a new object

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 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