Skip to content

Instantly share code, notes, and snippets.

@T1T4N
Created April 1, 2018 19:12
Show Gist options
  • Save T1T4N/e064845854d4b1a4b3056490bf56a580 to your computer and use it in GitHub Desktop.
Save T1T4N/e064845854d4b1a4b3056490bf56a580 to your computer and use it in GitHub Desktop.
A timeout function to be used with async/await
function timeout(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