@cspotcode/promise-cb
v0.1.3
Published
Promise-callback helper fuctions
Downloads
5
Readme
A fork of promise-cb that fixes broken installation on Windows. See the relevant issue.
Promise-CB
Promise-callback helper functions.
fromCallback
Creates a Promise from a callback-style function.
Example:
fromCallback(cb => fs.readFile(file, cb));
toCallback
Calls a callback function with the result of a promise once it settles.
Example:
toCallback(promise, (err, result) => {
if (err) console.error(err.stack);
else doSomething(result);
});