Skip to content

Instantly share code, notes, and snippets.

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 gaizka-allende/ef14778865f7cfbc540ff3939509b44f to your computer and use it in GitHub Desktop.
Save gaizka-allende/ef14778865f7cfbc540ff3939509b44f to your computer and use it in GitHub Desktop.
function wait(seconds: number, data: any) {
return new Promise(resolve => setTimeout(() => resolve(data), seconds * 1000));
}
// wait 5 seconds
await wait(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment