Skip to content

Instantly share code, notes, and snippets.

@nyawach
Created November 16, 2018 03:09
Show Gist options
  • Save nyawach/9b462e3e96240a46d709bc459026116e to your computer and use it in GitHub Desktop.
Save nyawach/9b462e3e96240a46d709bc459026116e to your computer and use it in GitHub Desktop.
setTimeoutのPromiseラッパー
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