1.5.3 • Published 10 years ago
@f/map v1.5.3
map
Map a function over a container of some kind
Installation
$ npm install @f/mapUsage
var map = require('@f/map')
map(add1, [1, 2, 3]) // => [2, 3, 4]
map(add1, {a: 1, b: 2, c: 3}) // => {a: 2, b: 3, c: 4}
map(add1, function * () {yield 1; yield 2; yield 3}) // => function * () {yield 2; yield 3; yield 4}
function add1 (n) {
return n + 1
}API
map(fn, container)
fn- The function to map over val. Accepts(val, key)and returns a newvalto be set atkey.container- A container of some kind (objects, arrays, generators or functors).
Returns: A new entity of the same type as container with all of its values being replaced by the result of fn(val, key).
License
MIT