Create a deferred promise
Go to file
Sindre Sorhus 31911e0cba 1.0.0 2016-10-21 12:14:29 +07:00
.editorconfig init 2016-10-21 12:07:52 +07:00
.gitattributes init 2016-10-21 12:07:52 +07:00
.gitignore init 2016-10-21 12:07:52 +07:00
.travis.yml init 2016-10-21 12:07:52 +07:00
index.js init 2016-10-21 12:07:52 +07:00
license init 2016-10-21 12:07:52 +07:00
package.json 1.0.0 2016-10-21 12:14:29 +07:00
readme.md init 2016-10-21 12:07:52 +07:00
test.js init 2016-10-21 12:07:52 +07:00

readme.md

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().

License

MIT © Sindre Sorhus