lxy 1c63d88d40 demo il y a 2 ans
..
.github 1c63d88d40 demo il y a 2 ans
example 1c63d88d40 demo il y a 2 ans
test 1c63d88d40 demo il y a 2 ans
.eslintrc 1c63d88d40 demo il y a 2 ans
CHANGELOG.md 1c63d88d40 demo il y a 2 ans
LICENSE 1c63d88d40 demo il y a 2 ans
README.md 1c63d88d40 demo il y a 2 ans
index.js 1c63d88d40 demo il y a 2 ans
package.json 1c63d88d40 demo il y a 2 ans

README.md

array-map Version Badge

github actions coverage License Downloads

npm badge

[].map(f) for older browsers

example

var map = require('array-map');
var letters = map([97,98,99], function (c) {
	return String.fromCharCode(c);
});
console.log(letters.join(''));

output:

abc

methods

var map = require('array-map')

var ys = map(xs, f)

Create a new array ys by applying f(xs[i], i, xs) to each element in xs at index i.

install

With npm do:

npm install array-map

license

MIT