Skip to content

Instantly share code, notes, and snippets.

@JonathonAshworth
Created November 22, 2019 00:25
Show Gist options
  • Save JonathonAshworth/3bdf2a6bd3e78bbdc32ed304afb8dbc6 to your computer and use it in GitHub Desktop.
Save JonathonAshworth/3bdf2a6bd3e78bbdc32ed304afb8dbc6 to your computer and use it in GitHub Desktop.
Wait function (can be awaited)
export default async n => new Promise((res, rej) => window.setTimeout(() => res(), n))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment