Created
February 18, 2019 09:02
-
-
Save ozrabal/6901de19f770cc37d5fac30e9da852e8 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 = (milliseconds) => { | |
| return new Promise(resolve => setTimeout(resolve, milliseconds)) | |
| } | |
| await sleep(2000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment