
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
The is-promise npm package is a simple utility that checks if a given object is a promise. It is useful for ensuring that a value conforms to the Promise interface, which is essential in asynchronous programming.
Check if a value is a promise
This feature allows you to check if a given value is a promise. The function returns true if the value is a promise and false otherwise.
const isPromise = require('is-promise');
const promise = new Promise((resolve, reject) => {});
const notPromise = {};
console.log(isPromise(promise)); // true
console.log(isPromise(notPromise)); // false
The p-is-promise package provides similar functionality to is-promise by checking if a value is a promise. It is also lightweight and straightforward to use, making it a good alternative.
The is-promise-like package checks if a value is promise-like, meaning it has a then method. This package is slightly more lenient than is-promise, as it does not require the value to be an actual Promise object.
Test whether an object looks like a promises-a+ promise
$ npm install is-promise
You can also use it client side via npm.
var isPromise = require('is-promise');
isPromise({then:function () {...}});//=>true
isPromise(null);//=>false
isPromise({});//=>false
isPromise({then: true})//=>false
MIT
FAQs
Test whether an object looks like a promises-a+ promise
The npm package is-promise receives a total of 18,206,599 weekly downloads. As such, is-promise popularity was classified as popular.
We found that is-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.