@manitoulin-transport/p-call

1.1.1 • 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)

/@manitoulin-transport/p-call/

    Package Sidebar

    Install

    npm i @manitoulin-transport/p-call

    Weekly Downloads

    0

    Version

    1.1.1

    License

    MIT

    Last publish

    Collaborators

    • manitoulin-transport