Skip to content

Instantly share code, notes, and snippets.

@eoikonomou
Created January 9, 2020 12:31
Show Gist options
  • Save eoikonomou/65cc2f02734c22ea4fefd9998564b5c8 to your computer and use it in GitHub Desktop.
Save eoikonomou/65cc2f02734c22ea4fefd9998564b5c8 to your computer and use it in GitHub Desktop.
Sleep function for javascript
/**
* Sleep for ms milliseconds
* @param ms
*/
function sleep(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