Created
October 17, 2025 12:33
-
-
Save bendera/f23da010ee825846b21667da56ac572c to your computer and use it in GitHub Desktop.
A simple delay function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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