Skip to content

Instantly share code, notes, and snippets.

@prashantpalikhe
Created July 24, 2018 21:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save prashantpalikhe/20a9b04c13f0f69b85732e43e76bc1de to your computer and use it in GitHub Desktop.
Save prashantpalikhe/20a9b04c13f0f69b85732e43e76bc1de to your computer and use it in GitHub Desktop.
Lodashify chrome devtools snippet
(function () {
'use strict';
var element = document.createElement('script');
element.src = "https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.15.0/lodash.min.js";
element.type = "text/javascript";
document.head.appendChild(element);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment