co-wrap-all
Version:
Call co.wrap for multiple generator functions
39 lines (28 loc) • 691 B
Markdown
> Call co.wrap for multiple generator functions
This tiny helper allows to easily call `co.wrap` for multiple generator functions.
For example:
```javascript
// Before
module.exports = {
foo: co.wrap(foo),
bar: co.wrap(bar)
};
// After
module.exports = wrapAll({foo, bar});
```
Also, it is very convenient for defining asynchronous methods:
```javascript
// Common
class Foo {
* bar(arg) { /* ... */ }
* baz(arg) { /* ... */ }
}
// Before
Foo.prototype.bar = co.wrap(Foo.prototype.bar);
Foo.prototype.baz = co.wrap(Foo.prototype.baz);
// After
wrapAll(Foo.prototype);
```
[](https://github.com/connesc/co-wrap-all/blob/master/LICENSE)