Skip to content

Instantly share code, notes, and snippets.

@iamdtang
Created September 13, 2022 19:16
Show Gist options
  • Select an option

  • Save iamdtang/4122679f695d39b6dcd124c0749bd78f to your computer and use it in GitHub Desktop.

Select an option

Save iamdtang/4122679f695d39b6dcd124c0749bd78f to your computer and use it in GitHub Desktop.
function timeout(milliseconds) {
return new Promise(resolve => {
setTimeout(resolve, milliseconds);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment