Created
February 28, 2020 14:04
-
-
Save sergiohidalgo/0565abc92e97b21c3b84766352ce6273 to your computer and use it in GitHub Desktop.
JS Gist
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
sleep = ms => new Promise(resolve => setTimeout(resolve, ms)); | |
(async () => { | |
await this.sleep(60000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment