JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 105144
  • Score
    100M100P100Q165799F
  • License MIT

Tiny, dependency free promisify library.

Package Exports

  • @octetstream/promisify

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@octetstream/promisify) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@octetstream/promisify

Tiny, dependency free promisify library.

devDependencies Status Build Status Code Coverage

API

promisify(target[, ctx]) -> function

Promisify Node.js callback-style function with native Promise

  • function target - function, that will be wrap with a Promise
  • any ctx - "this" context for a target function

promisify.all(targets[, ctx]) -> object

Promisify all functions from given object

  • object targets – object of target functinos
  • any ctx - "this" context for all wrapped functions

promisify.some(targets, list[, ctx]) -> object

Promisify some functions from given object, that was specified in list

  • object targets – object of target functinos
  • string[] list – an array of target functions names
  • any ctx - "this" context for all wrapped functions

promisify.except(targets, list[, ctx]) -> object

Promisify all functions from given object, except the ones from list

  • object targets – object of target functinos
  • string[] list – an array of target functions names
  • any ctx - "this" context for all wrapped functions