Skip to content

Instantly share code, notes, and snippets.

@corycook
Created April 24, 2018 17:35
Show Gist options
  • Select an option

  • Save corycook/1269759f1869c3ab930cf979093b983b to your computer and use it in GitHub Desktop.

Select an option

Save corycook/1269759f1869c3ab930cf979093b983b to your computer and use it in GitHub Desktop.
A simple promised wait utility.
function wait(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