You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			|  | 4 years ago | |
|---|---|---|
| .. | ||
| index.js | 4 years ago | |
| license | 4 years ago | |
| package.json | 4 years ago | |
| readme.md | 4 years ago | |
		
			
				
				readme.md
			
		
		
	
	p-defer 
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