huanggang 03a863fb53 add node_modules 7 years ago
..
test 03a863fb53 add node_modules 7 years ago
.npmignore 03a863fb53 add node_modules 7 years ago
History.md 03a863fb53 add node_modules 7 years ago
Makefile 03a863fb53 add node_modules 7 years ago
Readme.md 03a863fb53 add node_modules 7 years ago
index.js 03a863fb53 add node_modules 7 years ago
package.json 03a863fb53 add node_modules 7 years ago

Readme.md

thunkify

Turn a regular node function into one which returns a thunk, useful for generator-based flow control such as co.

Installation

$ npm install thunkify

Example

var thunkify = require('thunkify');
var fs = require('fs');

var read = thunkify(fs.readFile);

read('package.json', 'utf8')(function(err, str){
  
});

License

MIT