2.0.0 • Published 8 years ago

monkeymap v2.0.0

Weekly downloads
10
License
Apache-2.0
Repository
github
Last release
8 years ago

monkeymap

Perform a map-like operation on any data type.

It handles Array Array, Object Object and scalar scalar.

Use

var monkeymap = require('monkeymap');

monkeymap([1, 2, 3], function doubler(e, next) {
    next(null, e * 2);
}, function (err, result) {
    // result is [2, 4, 6];
});
2.0.0

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago