Skip to content
0347b72305
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Latest commit

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
May 13, 2020 11:13
May 13, 2020 11:13
May 13, 2020 11:13
May 13, 2020 11:13

p-defer Build Status

Create a deferred promise

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

Install

$ npm install --save p-defer

Usage

const pDefer = require('p-defer');

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

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

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

License

MIT © Sindre Sorhus