Socket
Socket
Sign inDemoInstall

@awaitbox/sleep

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @awaitbox/sleep

@awaitbox/sleep ========================


Version published
Weekly downloads
4
increased by100%
Maintainers
1
Install size
2.08 kB
Created
Weekly downloads
 

Readme

Source

@awaitbox/sleep

Await for a certain amount of time.

npm i @awaitbox/sleep --save

The sleep async function returns a promise that will resolve after the specified amount of time. This is a convenient alternative for setTimeout. This is inspired from sleep(...) in the C language, except that time is specified in milliseconds rather than seconds.

You can use it in async functions:

import sleep from '@awaitbox/sleep'

async function main() {
  await sleep( 1000 )
  console.log( 'I fell asleep for a second!' )
}

main()

You can of course use it as a Promise:

import sleep from '@awaitbox/sleep'

sleep( 1000 )
  .then( data => console.log( 'I took a 1-second nap!' ) )

Chain values will pass through if you use it in a Promise chain like follows:

import sleep from '@awaitbox/sleep'

fetch( ... )
  .then( ... )
  .then( sleep.bind( null, 1000 ) ) // passes data through after 1 second
  .then( data => console.log( 'use data for the awesome!', data ) )

Note

This is written in ES2016+ JavaScript. To use this in pre-ES2016 environments, you'll need to run this through a transpiler like Babel (and I recommend using the fast-async plugin to get the best results). See some tips here on wiring it up with Webpack: http://2ality.com/2017/06/pkg-esnext.html.

Keywords

FAQs

Last updated on 07 Jan 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc