Skip to content

Instantly share code, notes, and snippets.

@justlstn
Created March 23, 2018 14:31
Show Gist options
  • Save justlstn/f7c3301387c7edcb00f3e3258e09567f to your computer and use it in GitHub Desktop.
Save justlstn/f7c3301387c7edcb00f3e3258e09567f to your computer and use it in GitHub Desktop.
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
// using
// await sleep(300);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment