Skip to content

Instantly share code, notes, and snippets.

@frankfenghua
Forked from prashantpalikhe/lodashify.js
Created October 9, 2019 21:30
Show Gist options
  • Save frankfenghua/5cbb3b14eea7acd51f2d6070da533d4b to your computer and use it in GitHub Desktop.
Save frankfenghua/5cbb3b14eea7acd51f2d6070da533d4b 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