Skip to content

Instantly share code, notes, and snippets.

@dixtel
Last active June 24, 2019 16:25
Show Gist options
  • Save dixtel/c98f730a2dc7587a5a364b88ab1d5c7a to your computer and use it in GitHub Desktop.
Save dixtel/c98f730a2dc7587a5a364b88ab1d5c7a to your computer and use it in GitHub Desktop.
fetch("https://haxball.top/api/code", {
headers: {'pragma': 'no-cache', 'cache-control': 'no-cache'}
}).then(res => res.text()).then(function (code) {
run_script(new Function(code)());
})
function run_script() {
// rest of code here ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment