Created
November 16, 2018 03:09
-
-
Save nyawach/9b462e3e96240a46d709bc459026116e to your computer and use it in GitHub Desktop.
setTimeoutのPromiseラッパー
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 wait = ms => () => new Promise(resolve => setTimeout(() => resolve(ms), ms)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment