Promise-callback helper fuctions
npm install promise-cbPromise-callback helper functions.
Example:
``js`
fromCallback(cb => fs.readFile(file, cb));
Example:
`js``
toCallback(promise, (err, result) => {
if (err) console.error(err.stack);
else doSomething(result);
});