Skip to content

Instantly share code, notes, and snippets.

@marcingolenia
Created October 21, 2022 21:18
Show Gist options
  • Save marcingolenia/3db1e488945a5133078623cd53eac63c to your computer and use it in GitHub Desktop.
Save marcingolenia/3db1e488945a5133078623cd53eac63c to your computer and use it in GitHub Desktop.
const delay = (milisec: number) =>
new Promise(r => {
setTimeout(r, milisec);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment