Skip to content

Instantly share code, notes, and snippets.

@sayanriju
Created October 9, 2019 10:36
Show Gist options
  • Save sayanriju/b95d833a1f591dbacec83fa54d1f1ac1 to your computer and use it in GitHub Desktop.
Save sayanriju/b95d833a1f591dbacec83fa54d1f1ac1 to your computer and use it in GitHub Desktop.
Async Sleep Function
async function sleep(secs = 1) {
return new Promise(r => setTimeout(() => r(), secs * 1000))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment