Skip to content

Instantly share code, notes, and snippets.

@azami
Created October 30, 2018 04:16
Show Gist options
  • Save azami/bb74c3b689ac1d69bafa24fa651f3e26 to your computer and use it in GitHub Desktop.
Save azami/bb74c3b689ac1d69bafa24fa651f3e26 to your computer and use it in GitHub Desktop.
timer
const timeout = (ms: number) =>
new Promise(resolve => setTimeout(resolve, ms));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment