Skip to content

Instantly share code, notes, and snippets.

@ericorruption
Last active February 2, 2023 19:03
Show Gist options
  • Save ericorruption/bbf768cb6216414c9a2f720557a7f580 to your computer and use it in GitHub Desktop.
Save ericorruption/bbf768cb6216414c9a2f720557a7f580 to your computer and use it in GitHub Desktop.
Sleep() async/await in typescript
export const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment