Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

array-map-x

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-map-x

Creates an array with the results of calling a function on every element.

  • 2.3.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Travis status Dependency status devDependency status npm version

array-map-x

Creates an array with the results of calling a function on every element.

Version: 2.3.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750

module.exportsarray

This method creates a new array with the results of calling a provided function on every element in the calling array.

Kind: Exported member
Returns: array - A new array with each element being the result of the callback function.
Throws:

  • TypeError If array is null or undefined.
  • TypeError If callBack is not a function.
ParamTypeDescription
arrayarrayThe array to iterate over.
callBackfunctionFunction that produces an element of the Array.
[thisArg]*Value to use as this when executing callback.

Example

var map = require('array-map-x');

var numbers = [1, 4, 9];
var roots = map(numbers, Math.sqrt);
// roots is now [1, 2, 3]
// numbers is still [1, 4, 9]

Keywords

FAQs

Package last updated on 10 Nov 2017

Did you know?

Socket

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc