@cspotcode/promise-cb
TypeScript icon, indicating that this package has built-in type declarations

0.1.3 • Public • Published

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);
});

/@cspotcode/promise-cb/

    Package Sidebar

    Install

    npm i @cspotcode/promise-cb

    Weekly Downloads

    1

    Version

    0.1.3

    License

    ISC

    Last publish

    Collaborators

    • cspotcode