thunkify

Turn callbacks, arrays, generators, generator functions, and promises into a thunk

Usage no npm install needed!

<script type="module">
  import thunkify from 'https://cdn.skypack.dev/thunkify';
</script>

README

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