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