Map object keys and values into a new object
$ npm install --save map-obj
const mapObj = require('map-obj');
const newObject = mapObj({foo: 'bar'}, (key, value) => [value, key]);
//=> {bar: 'foo'}
Type: Object
Source object to copy properties from.
Type: Function
Mapping function.
- It has signature
mapper(sourceKey, sourceValue, source)
. - It must return a two item array:
[targetKey, targetValue]
.
Type: boolean
Default: false
Recurse nested objects and objects in arrays.
Type: Object
Default: {}
Target object to map properties on to.
- filter-obj - Filter object keys and values into a new object
- object-assign - Copy enumerable own properties from one or more source objects to a target object
MIT © Sindre Sorhus