Created
July 26, 2022 17:41
-
-
Save neysidev/2629c66764ac5483ae9a6e543c075eb5 to your computer and use it in GitHub Desktop.
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 sleep = ms => { | |
| return new Promise(resolve => { | |
| setTimeout(resolve, ms); | |
| }) | |
| } | |
| // How to use? | |
| await sleep(5000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment