Skip to content

Instantly share code, notes, and snippets.

@robstarbuck
Last active November 30, 2018 09:49
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 robstarbuck/31a34ed2ce6ccf97c7f49b93fa889c71 to your computer and use it in GitHub Desktop.
Save robstarbuck/31a34ed2ce6ccf97c7f49b93fa889c71 to your computer and use it in GitHub Desktop.
// http://stackoverflow.com/questions/5282228/include-javascript-file-in-chrome-console
const script = 'https://cdnjs.cloudflare.com/ajax/libs/ramda/0.26.1/ramda.min.js';
fetch(script)
.then(response => response.text())
.then(text => eval(text));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment