zouyong 57b51c387e 1 před 5 roky
..
test 57b51c387e 1 před 5 roky
.npmignore 57b51c387e 1 před 5 roky
History.md 57b51c387e 1 před 5 roky
Makefile 57b51c387e 1 před 5 roky
Readme.md 57b51c387e 1 před 5 roky
index.js 57b51c387e 1 před 5 roky
package.json 57b51c387e 1 před 5 roky

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