0.0.4 • Published 7 years ago

codash v0.0.4

Weekly downloads
18
License
-
Repository
github
Last release
7 years ago

codash

It's renamed to co-lodash

API

  • _.isGenerator(obj)
  • _.sleep(mill)
  • _.coEach(collection, fn) // fn params (item, index, collection)
  • _.coMap(collection, fn) // fn params (item, index, collection)
  • _.coReduce(collection, fn, memo) // fn params (memo, item, index, collection)

Example

var _ = require('codash'); // yes, it can do exactly the same as lodash, because it is lodash with some extendsions.

co(function *() {
    yield* _.coEach([1,2,3,4,5], function* (v) {
        console.log('each:', v);
        yield _.sleep(1000);
    });

    console.log(yield* _.coMap([1,2,3,4,5], function *(v) {
        console.log('map:', v);
        yield _.sleep(1000);
        return v * 2;
    }));

    console.log(yield* _.coReduce([1,2,3,4,5], function*(m, v) {
        console.log('reduce:', v);
        yield _.sleep(1000);
        return m + v;
    }, 0));
});
0.0.4

7 years ago

0.0.3-1

8 years ago

0.0.3

8 years ago

0.0.2

10 years ago

0.0.1

10 years ago