|
hace 5 años | |
---|---|---|
.. | ||
test | hace 5 años | |
.npmignore | hace 5 años | |
History.md | hace 5 años | |
Makefile | hace 5 años | |
Readme.md | hace 5 años | |
index.js | hace 5 años | |
package.json | hace 5 años |
Turn a regular node function into one which returns a thunk, useful for generator-based flow control such as co.
$ npm install thunkify
var thunkify = require('thunkify');
var fs = require('fs');
var read = thunkify(fs.readFile);
read('package.json', 'utf8')(function(err, str){
});
MIT