Skip to content

Instantly share code, notes, and snippets.

@danakt
Last active November 25, 2017 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danakt/d564d275df5964a2fda34c8e2f79cd0b to your computer and use it in GitHub Desktop.
Save danakt/d564d275df5964a2fda34c8e2f79cd0b to your computer and use it in GitHub Desktop.
Pause script
function pause(milliseconds) {
const dt = Date.now()
while (Date.now() - dt <= milliseconds) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment