dank-amap

0.1.3 • Public • Published

node-dank-amap

An asynchronous map function which can map over anything for node.

Similar feature set as node-dank-map

example

amap = require('dank-amap');
 
amap([5,2,4,5], function (key, val, next, emit, end) {
    if (val === 5) {
        return next();
    }
    else {
        return next(null, val);
    }
}, function (err, result) {
    console.log(result);
}, true);
 

See also test.js

Readme

Keywords

Package Sidebar

Install

npm i dank-amap

Weekly Downloads

0

Version

0.1.3

License

MIT

Last publish

Collaborators

  • wankdanker