Skip to content

Instantly share code, notes, and snippets.

@GiveMeSomething
Last active November 28, 2023 15:10
Show Gist options
  • Save GiveMeSomething/bdd609bdb55fb6f6b73777357042af12 to your computer and use it in GitHub Desktop.
Save GiveMeSomething/bdd609bdb55fb6f6b73777357042af12 to your computer and use it in GitHub Desktop.
TypeScript `sleep()` function
export const sleep = async (ms: number): Promise<void> => {
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