map-async

Asynchronously map over a list


License
MIT
Install
npm install map-async@0.1.1

Documentation

map-async

Asynchronously map over a list

Example

var map = require("map-async")

map({
    foo: "bar"
    , baz: "boz"
}, function iterator(value, key, cb) {
    cb(null, value + value)
}, function finish(err, result) {
    /* ... */
})

Installation

npm install map-async

Contributors

  • Raynos

MIT Licenced