lhl 7eff0e2ec0 1-9 4 місяців тому
..
test 7eff0e2ec0 1-9 4 місяців тому
.npmignore 7eff0e2ec0 1-9 4 місяців тому
History.md 7eff0e2ec0 1-9 4 місяців тому
Makefile 7eff0e2ec0 1-9 4 місяців тому
Readme.md 7eff0e2ec0 1-9 4 місяців тому
index.js 7eff0e2ec0 1-9 4 місяців тому
package.json 7eff0e2ec0 1-9 4 місяців тому

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