0.1.3 • Published 10 years ago

dank-amap v0.1.3

Weekly downloads
7
License
MIT
Repository
github
Last release
10 years ago

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

0.1.3

10 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

12 years ago