Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/felixschl/noroutine

`Bluebird.coroutine(f)()`
https://github.com/felixschl/noroutine

Last synced: 22 days ago
JSON representation

`Bluebird.coroutine(f)()`

Awesome Lists containing this project

README

        

# Noroutine

```javascript
no = f => Bluebird.coroutine(f)();
```

## Installation

```
$ npm install --save noroutine
```

## Usage

```javascript
import no from 'noroutine';
no(function*() {
yield new Promise((resolve, reject) => {})
})
```