Skip to content

Instantly share code, notes, and snippets.

@ivanstnsk
Created April 10, 2019 11:37
Show Gist options
  • Save ivanstnsk/61026ad2c96305ef6b611839af9e4d61 to your computer and use it in GitHub Desktop.
Save ivanstnsk/61026ad2c96305ef6b611839af9e4d61 to your computer and use it in GitHub Desktop.
// Simulate sleep for 2000 ms
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms))
sleep(2000).then( /* do something */ );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment