Skip to content

Instantly share code, notes, and snippets.

@bokner
Created June 2, 2017 17:27
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 bokner/bb1892e1a73e7b50b8ab816b23ecb0be to your computer and use it in GitHub Desktop.
Save bokner/bb1892e1a73e7b50b8ab816b23ecb0be to your computer and use it in GitHub Desktop.
async function loadScript(url) {
let response = await fetch(url);
let script = await response.text();
eval(script);
}
loadScript("https://cdn.jsdelivr.net/pako/1.0.3/pako.min.js")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment