Skip to content

Instantly share code, notes, and snippets.

@lil5
Last active August 4, 2021 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lil5/b3ca6c9303b2e359468ea81b8890725d to your computer and use it in GitHub Desktop.
Save lil5/b3ca6c9303b2e359468ea81b8890725d to your computer and use it in GitHub Desktop.
Async function on load
async function waitDocumentLoad() {
return new Promise<void>((resolve) =>
window.addEventListener("load", () => resolve())
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment