p-defer
TypeScript icon, indicating that this package has built-in type declarations

4.0.1 • Public • Published

p-defer

Create a deferred promise

Don't use this unless you know what you're doing. Prefer the Promise constructor.

Install

npm install p-defer

Usage

import pDefer from 'p-defer';

function delay(milliseconds) {
	const deferred = pDefer();
	setTimeout(deferred.resolve, milliseconds, '🦄');
	return deferred.promise;
}

console.log(await delay(100));
//=> '🦄'

The above is just an example. Use delay if you need to delay a promise.

API

pDefer()

Returns an object with a promise property and functions to resolve() and reject().

Related

  • p-lazy - Create a lazy promise that defers execution until .then() or .catch() is called
  • More…

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 4.0.1
    40,434
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 4.0.1
    40,434
  • 4.0.0
    88,268
  • 3.0.0
    1,584,509
  • 2.1.0
    6,454
  • 2.0.1
    3
  • 2.0.0
    3
  • 1.0.0
    4,485,938

Package Sidebar

Install

npm i p-defer

Weekly Downloads

6,205,609

Version

4.0.1

License

MIT

Unpacked Size

3.83 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus