Skip to content

Instantly share code, notes, and snippets.

@pavarov
Created June 1, 2022 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavarov/c8e0fa487abb3ad043f33429337e6eac to your computer and use it in GitHub Desktop.
Save pavarov/c8e0fa487abb3ad043f33429337e6eac to your computer and use it in GitHub Desktop.
js sleep function
function sleep(ms: number) {
return new Promise(resolve => window.setTimeout(resolve, ms));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment