Map object keys and values into a new object
$ npm install 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: Object
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
MIT © Sindre Sorhus