Last active
September 11, 2024 19:40
-
-
Save mstoykov/7684bf54a1e2f35d048868ba6117e2cb to your computer and use it in GitHub Desktop.
This file contains 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
export const delay = (delayInms) => { | |
return new Promise(resolve => setTimeout(resolve, delayInms)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment