Skip to content

Instantly share code, notes, and snippets.

@supermarsx
Last active September 10, 2020 16:21
Show Gist options
  • Save supermarsx/d69e4d39f17e056529b4f220c91ebe67 to your computer and use it in GitHub Desktop.
Save supermarsx/d69e4d39f17e056529b4f220c91ebe67 to your computer and use it in GitHub Desktop.
Delays script execution for a given amount of milliseconds
/*
delayScript
Delays script execution
parameters
time (integer) - Time to delay scripts execution
*/
async function delayScript(time) {
return new Promise(function(resolve) {
setTimeout(resolve, time);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment