tanyanfei 2effbd93de init hace 4 años
..
test 2effbd93de init hace 4 años
.npmignore 2effbd93de init hace 4 años
History.md 2effbd93de init hace 4 años
Makefile 2effbd93de init hace 4 años
Readme.md 2effbd93de init hace 4 años
index.js 2effbd93de init hace 4 años
package.json 2effbd93de init hace 4 años

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