Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wankdanker/node-dank-amap
An asynchronous map function which can map over anything for node.
https://github.com/wankdanker/node-dank-amap
Last synced: 14 days ago
JSON representation
An asynchronous map function which can map over anything for node.
- Host: GitHub
- URL: https://github.com/wankdanker/node-dank-amap
- Owner: wankdanker
- Created: 2012-09-20T22:01:54.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-16T19:44:31.000Z (over 10 years ago)
- Last Synced: 2024-12-06T13:50:59.215Z (about 1 month ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
node-dank-amap
--------------An asynchronous map function which can map over anything for node.
Similar feature set as [node-dank-map](https://github.com/wankdanker/node-dank-map)
example
-------```javascript
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