Skip to content

Instantly share code, notes, and snippets.

@tkalfigo
Forked from khalilovcmd/lodashify.js
Created April 9, 2017 11:54
Show Gist options
  • Save tkalfigo/97bc88e51985b955c63ac9c89fbe60f1 to your computer and use it in GitHub Desktop.
Save tkalfigo/97bc88e51985b955c63ac9c89fbe60f1 to your computer and use it in GitHub Desktop.
to import lodash into chrome dev tools console
var el = document.createElement('script');
el.src = "https://raw.githubusercontent.com/lodash/lodash/3.10.1/lodash.min.js";
el.type = "text/javascript";
document.head.appendChild(el)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment