kaka cc403a83fd 热更功能跑通 5 năm trước cách đây
..
test cc403a83fd 热更功能跑通 5 năm trước cách đây
.npmignore cc403a83fd 热更功能跑通 5 năm trước cách đây
History.md cc403a83fd 热更功能跑通 5 năm trước cách đây
Makefile cc403a83fd 热更功能跑通 5 năm trước cách đây
Readme.md cc403a83fd 热更功能跑通 5 năm trước cách đây
index.js cc403a83fd 热更功能跑通 5 năm trước cách đây
package.json cc403a83fd 热更功能跑通 5 năm trước cách đây

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