Socket
Socket
Sign inDemoInstall

object.map

Package Overview
Dependencies
4
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

object.map

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


Version published
Maintainers
3
Weekly downloads
2,654,539
decreased by-8.62%

Weekly downloads

Readme

Source

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

  • arr-map: Faster, node.js focused alternative to JavaScript's native array map. | homepage
  • array-each: Loop over each item in an array and call the given function on every element. | homepage
  • collection-map: Returns an array of mapped values from an array or object. | homepage

Contributing

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

Contributors

CommitsContributor
4jonschlinkert
1phated
1doowb

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.

Keywords

FAQs

Last updated on 21 Dec 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc