New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

p-min-delay

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

p-min-delay

Delay a promise a minimum amount of time

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
14K
increased by38.07%
Maintainers
1
Weekly downloads
 
Created
Source

p-min-delay Build Status

Delay a promise a minimum amount of time

While the delay module delays the promise a specified amount of time and then resolves it, this module ensures the promise resolves after the specified amount of time.

Useful when you have a promise that may settle immediately or may take some time, and you want to ensure it doesn't settle too fast. For example, if you want to show a loading indicator only if the promise takes more than 1 second.

Install

$ npm install --save p-min-delay

Usage

const pMinDelay = require('p-min-delay');

pMinDelay(somePromise, 1000)
	.then(value => {
		// executed after minimum 1 second even if `somePromise` fulfills before that
	})
	.catch(error => {
		// executed right away regardless of delay if `somePromise` rejects
	});

API

pMinDelay(input, minimumDelay)

input

Type: Promise

Promise to delay.

minimumDelay

Type: number

Time in milliseconds.

  • delay - Delay a promise a specified amount of time
  • p-immediate - Returns a promise resolved in the next event loop - think setImmediate()
  • p-timeout - Timeout a promise after a specified amount of time
  • More…

License

MIT © Sindre Sorhus

Keywords

FAQs

Package last updated on 20 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc