p-call

1.0.0 • Public • Published

p-call

Call a legacy async method and return a promise

Very similar to promisify-call but always promisifies the call, rather than guessing if it should.


Example

Instead of using the legacy error-first callback API ...

object.method(argument, (error, result) => {
  if (error) {
    throw error
  }
  console.log(result)
})

Use the Promise API ...

const result = await pCall(object, object.method, argument)
console.log(result)
 
// Or, specify the function as a property key of `object`...
const result = await pCall(object, 'method', argument)
console.log(result)

/p-call/

    Package Sidebar

    Install

    npm i p-call

    Weekly Downloads

    0

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • zen_flow