Skip to content

Instantly share code, notes, and snippets.

@Minozzzi
Created May 6, 2022 12:55
Show Gist options
  • Save Minozzzi/f3177d1ab5e2c1d4bbc175c8604c67b9 to your computer and use it in GitHub Desktop.
Save Minozzzi/f3177d1ab5e2c1d4bbc175c8604c67b9 to your computer and use it in GitHub Desktop.
Sleep
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment