npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@zerodep/is-promise

v2.0.12

Published

A utility to determine if a value is a Promise

Downloads

78

Readme

@zerodep/is-promise

version language types license

CodeFactor Known Vulnerabilities

OpenSSF Best Practices

A simple, performant utility to determine if a value is a pending, resolved or rejected Promise.

Full documentation is available at the zerodep.app page.

Signature

declare const isPromise: (value: unknown) => boolean;

Examples

All @zerodep packages support both ESM and CJS formats, each complete with Typescript typings.

// ESM
import { isPromise } from '@zerodep/is-promise';

// CJS
const { isPromise } = require('@zerodep/is-promise');
// Arrays
isPromise([]); // false
isPromise([1, 2, 3]); // false
isPromise(['a', 'b', 'c']); // false

// BigInts
isPromise(42n); // false
isPromise(0n); // false
isPromise(-0n); // false
isPromise(-42n); // false

// Booleans
isPromise(true); // false
isPromise(false); // false

// Class
isPromise(
  class SomeClass {
    constructor() {}
  }
); // false

// Dates
isPromise(new Date()); // false
isPromise(new Date('1970-01-01T12:00:00.000Z')); // false
isPromise(new Date('2099-12-31')); // false

// Empty
isPromise(null); // false
isPromise(undefined); // false

// Errors
isPromise(new Error('message')); // false
isPromise(new AggregateError([new Error('err1'), new Error('err2')], 'message')); // false

// Floats
isPromise(3.14); // false
isPromise(0.0); // false
isPromise(-0.0); // false
isPromise(-3.14); // false
isPromise(Math.E); // false
isPromise(Math.PI); // false
isPromise(Number.MIN_VALUE); // false

// Functions
isPromise(() => 'function'); // false
isPromise(async () => 'function'); // false

// Generators
isPromise(function* () {
  yield 'a';
}); // false
isPromise(async function* () {
  yield 'a';
}); // false

// Maps
isPromise(new Map()); // false
isPromise(new Map([['key1', 123]])); // false
isPromise(new Map([['key1', 'value1']])); // false

// Numbers
isPromise(Number.POSITIVE_INFINITY); // false
isPromise(Number.MAX_SAFE_INTEGER); // false
isPromise(3e8); // false
isPromise(42); // false
isPromise(1); // false
isPromise(0); // false
isPromise(-0); // false
isPromise(-1); // false
isPromise(-42); // false
isPromise(-3e8); // false
isPromise(Number.MIN_SAFE_INTEGER); // false
isPromise(Number.NEGATIVE_INFINITY); // false
isPromise(Number.NaN); // false

// POJOs
isPromise({}); // false
isPromise({ key: 'string' }); // false
isPromise({ key: 123 }); // false

// Promise
isPromise(new Promise(() => {})); // true
isPromise(new Promise.all([])); // true
isPromise(new Promise.allSettled([])); // true
isPromise(new Promise.race([])); // true
isPromise(Promise.resolve()); // true

// Regular Expression
isPromise(/[regex]+/gi); // false
isPromise(new RegExp('d', 'gi')); // false

// Sets
isPromise(new Set()); // false
isPromise(new Set([1, 2, 3])); // false
isPromise(new Set(['a', 'b', 'c'])); // false

// Strings
isPromise(''); // false
isPromise('a longer string'); // false
isPromise('1000n'); // false
isPromise('3e8'); // false
isPromise('42'); // false
isPromise('3.14'); // false
isPromise('0'); // false
isPromise('-0'); // false
isPromise('-3.14'); // false
isPromise('-42'); // false
isPromise('-3e8'); // false
isPromise('-1000n'); // false

// Symbols
isPromise(Symbol()); // false
isPromise(Symbol('name')); // false

// This
isPromise(this); // false
isPromise(globalThis); // false

// TypedArrays
isPromise(new Int8Array(2)); // false
isPromise(new Int16Array(2)); // false
isPromise(new Int32Array(2)); // false
isPromise(new Uint8Array(2)); // false
isPromise(new Uint16Array(2)); // false
isPromise(new Uint32Array(2)); // false
isPromise(new Uint8ClampedArray(2)); // false

isPromise(new BigInt64Array(2)); // false
isPromise(new BigUint64Array(2)); // false

isPromise(new Float32Array(2)); // false
isPromise(new Float64Array(2)); // false

isPromise(new SharedArrayBuffer(512)); // false

// WeakMap and WeakSet
isPromise(new WeakMap()); // false
isPromise(new WeakSet()); // false

Negative Response

isPromise(['a', 'b', 'c']); // false
isPromise(1000n); // false
isPromise(true); // false
isPromise(new Date()); // false
isPromise(''); // false
isPromise(new Error('message')); // false
isPromise(3.14); // false
isPromise(() => 'function'); // false
isPromise(42); // false
isPromise(
  new Map([
    ['a', 1],
    ['b', 2],
  ])
); // false
isPromise(null); // false
isPromise({ an: 'object' }); // false
isPromise(/[regex]+/gi); // false
isPromise(new Set([1, 2, 3])); // false
isPromise('a string'); // false
isPromise(Symbol()); // false
isPromise(new Int32Array(2)); // false
isPromise(undefined); // false

ZeroDep Advantages

  • Zero npm dependencies - completely eliminates all risk of supply-chain attacks, decreases node_modules folder size
  • ESM & CJS - has both ecmascript modules and common javascript exports
  • Tree Shakable - built to be fully tree shakable ensuring your packages are the smallest possible size
  • Fully typed - typescript definitions are provided for every package for a better developer experience
  • Semantically named - package and method names are easy to grok, remember, use, and read
  • Documented - actually useful documentation with examples at zerodep.app
  • Intelligently Packaged - multiple npm packages of different sizes available allowing a menu or a-la-carte composition of capabilities
  • 100% Tested - all methods and packages are fully unit tested
  • Predictably Versioned - semantically versioned for peace-of-mind upgrading, this includes changelogs
  • MIT Licensed - permissively licensed for maximum usability