Skip to content

Instantly share code, notes, and snippets.

@d-g-h
Created April 18, 2017 14:22
Show Gist options
  • Select an option

  • Save d-g-h/c07d96433f99fae1780c361a2298e9b8 to your computer and use it in GitHub Desktop.

Select an option

Save d-g-h/c07d96433f99fae1780c361a2298e9b8 to your computer and use it in GitHub Desktop.
//Or TypeScript, with generics:
function delay<T>(millis: number, value?: T): Promise<T> {
return new Promise((resolve) => setTimeout(resolve(value), millis))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment