promisify-callback
v1.0.0
Published
A small ES6 module that turns any async function with callback into a promise
Downloads
10
Readme
promisify-callback
A small ES6 module that turns any async function with callback into a promise
Install
$ npm i promisify-callbackUsage Example
import promisify from 'promisify-callback';
promisify(fs.readFile, '/path/to/file').then(/*code here*/);Test
$ npm test