Skip to content

Instantly share code, notes, and snippets.

@gjtiquia
Created May 5, 2024 02:55
Show Gist options
  • Save gjtiquia/4a4b68c341a25d9cd4851161cddb9b23 to your computer and use it in GitHub Desktop.
Save gjtiquia/4a4b68c341a25d9cd4851161cddb9b23 to your computer and use it in GitHub Desktop.
sleep() in TypeScript
function sleep(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms));
}
@gjtiquia
Copy link
Author

gjtiquia commented May 5, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment