Skip to content

Instantly share code, notes, and snippets.

@Xanir
Last active March 7, 2019 20:09
Show Gist options
  • Save Xanir/e1808826418ddf0a671a5410570fbc4e to your computer and use it in GitHub Desktop.
Save Xanir/e1808826418ddf0a671a5410570fbc4e to your computer and use it in GitHub Desktop.
var scriptId = 'api-base-path';
var scriptElem = document.querySelector('script#' + scriptId)
var scriptBlob = new Blob([scriptElem.innerText])
var scriptURL = URL.createObjectURL(scriptBlob)
var res = await fetch('worker.js');
var script = await res.text();
var scriptBlob = new Blob([script]);
var scriptURL = URL.createObjectURL(scriptBlob);
var worker = new Worker(scriptURL);
return worker;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment