Skip to content

Instantly share code, notes, and snippets.

@eralvarez
Created September 25, 2024 21:59
Show Gist options
  • Save eralvarez/5d2572a9b1b301374e83f9cbf224b249 to your computer and use it in GitHub Desktop.
Save eralvarez/5d2572a9b1b301374e83f9cbf224b249 to your computer and use it in GitHub Desktop.
fn to sleep js code
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment