projecte_ionic/node_modules/p-defer
2022-02-09 18:30:03 +01:00
..
index.js Conexio amb la api 2022-02-09 18:30:03 +01:00
license Conexio amb la api 2022-02-09 18:30:03 +01:00
package.json Conexio amb la api 2022-02-09 18:30:03 +01:00
readme.md Conexio amb la api 2022-02-09 18:30:03 +01:00

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