Skip to content

Instantly share code, notes, and snippets.

View foxbit19's full-sized avatar

foxbit19

View GitHub Profile
@foxbit19
foxbit19 / forceDownload.js
Last active March 16, 2021 14:53 — forked from jmcarp/forceDownload.js
Generate URL from blob and force file download in JavaScript
/**
* Generates an URL from blob data
* @param blob data to use for URL generation
*/
function generateURL(blob) {
return URL.createObjectURL(blob);
}
/**
* Dispose URL previusly generated to avoid memory issues.