Website/node_modules/thunkify/Readme.md

28 lines
408 B
Markdown
Raw Normal View History

2015-12-02 18:21:44 -05:00
# thunkify
Turn a regular node function into one which returns a thunk,
useful for generator-based flow control such as [co](https://github.com/visionmedia/co).
## Installation
```
$ npm install thunkify
```
## Example
```js
var thunkify = require('thunkify');
var fs = require('fs');
var read = thunkify(fs.readFile);
read('package.json', 'utf8')(function(err, str){
});
```
# License
MIT