🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

create-thenable

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-thenable

Create a thenable for a given Promise prototype

1.0.3
latest
Source
npm
Version published
Weekly downloads
32K
40.99%
Maintainers
1
Weekly downloads
 
Created
Source

create-thenable

Create a thenable for a given Promise

Install

$ npm install --save create-thenable

Usage

var thenable = require('create-thenable')(require('bluebird'))
return thenable.catch(errHandlers).then(handler)

The returned thenable has a then method that creates a new promise. It also proxies methods from the prototype and guarantees the presence of catch and finally. When these proxied methods are called, they call then to create the promise and then call the method on the result. That way you can do this:

var thenable = createThenable(require('bluebird'), function () {
  resolve('foo')
})


thenable.tap(function () {
  console.log('succeeded')
})
.then(function (value) {
  assert(value, 'foo')
})

thenable isn't a true Bluebird Promise but you can still trigger its methods as if it were.

API

createThenable(Promise, resolver) -> thenable

Promise

Required
Type: function

A Promise constructor

resolver

Required
Type: function

The resolver function to pass to the Promise constructor

License

MIT © Ben Drucker

Keywords

promise

FAQs

Package last updated on 29 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts