lll
v0.0.3
Published
A simple implementation of async.parallel
Downloads
64,768
Readme
lll (parallel)
A simple implementation of async.parallel
Install
$ npm install lll
Usage
var parallel = require('lll');
parallel([
function (cb) {
setTimeout(function () {
cb(null, 'one');
});
},
function (cb) {
setTimeout(function () {
cb(null, 'two');
});
}
], function (err, result) {
console.log(result)
// => ['one', 'two']
})
Test
$ npm test
License
MIT