Skip to content

Instantly share code, notes, and snippets.

@AmesianX
Forked from corycook/wait.js
Created March 19, 2019 20:39
Show Gist options
  • Select an option

  • Save AmesianX/09edde5baea6c0afb912ddbd4a58bf2c to your computer and use it in GitHub Desktop.

Select an option

Save AmesianX/09edde5baea6c0afb912ddbd4a58bf2c 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