Skip to content

Instantly share code, notes, and snippets.

@YNSTakeru
Created March 17, 2024 19:32
Show Gist options
  • Save YNSTakeru/fd5bad1c2f0923d0cf66e8641fbe3071 to your computer and use it in GitHub Desktop.
Save YNSTakeru/fd5bad1c2f0923d0cf66e8641fbe3071 to your computer and use it in GitHub Desktop.
function delay(ms, value){
return new Promise(resolve => setTimeout(() => resolve(value), ms));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment