/ live.thehmm.nl / back / node_modules / object.map /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[   ]LICENSE7 years ago1.1K 
[TXT]README.md7 years ago3.4Kd7c1522 post receive test [كارل مبارك]
[   ]index.js7 years ago471  
[   ]package.json2 years ago2.3K 
README.md

object.map NPM version NPM monthly downloads NPM total downloads Linux Build Status Windows Build Status

Similar to map for arrays, this creates a new object by calling the callback on each property of the original object.

Install

Install with npm:

$ npm install --save object.map

Usage

var mapValues = require('object.map');

var result = mapValues({a: 'a', b: 'b'}, function(val, key, obj) {
  return val + val;
});
console.log(result);
//=> {a: 'aa', b: 'bb'}

Optionally specify a thisArg as the last argument:

var result = mapValues({a: 'b'}, function(val, key, obj) {
  return this.foo;
}, {foo: 'bar'});
console.log(result);
//=> {a: 'bar'}

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Contributors

Commits Contributor
4 jonschlinkert
1 phated
1 doowb

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on December 20, 2017.

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80