Skip to content

Instantly share code, notes, and snippets.

@neysidev
Created July 26, 2022 17:41
Show Gist options
  • Select an option

  • Save neysidev/2629c66764ac5483ae9a6e543c075eb5 to your computer and use it in GitHub Desktop.

Select an option

Save neysidev/2629c66764ac5483ae9a6e543c075eb5 to your computer and use it in GitHub Desktop.
const sleep = ms => {
return new Promise(resolve => {
setTimeout(resolve, ms);
})
}
// How to use?
await sleep(5000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment