Skip to content

Instantly share code, notes, and snippets.

@myobie
Created January 20, 2025 09:58
Show Gist options
  • Save myobie/ed145f672dc59056127898998f19485c to your computer and use it in GitHub Desktop.
Save myobie/ed145f672dc59056127898998f19485c to your computer and use it in GitHub Desktop.
export function saveURLToDisk(url: URL | string, name: string) {
const anchor = document.createElement('a')
anchor.href = url.toString()
anchor.download = name
anchor.click()
requestAnimationFrame(() => {
anchor.remove()
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment