Package Exports
- array-map
- array-map/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (array-map) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
array-map 
[].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:
abcmethods
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-maplicense
MIT
