Skip to content

Instantly share code, notes, and snippets.

@bendera
Created October 17, 2025 12:33
Show Gist options
  • Save bendera/f23da010ee825846b21667da56ac572c to your computer and use it in GitHub Desktop.
Save bendera/f23da010ee825846b21667da56ac572c to your computer and use it in GitHub Desktop.
A simple delay function
const delay = (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