Skip to content

Instantly share code, notes, and snippets.

@hkongm
Created August 31, 2013 08:35
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 hkongm/6396947 to your computer and use it in GitHub Desktop.
Save hkongm/6396947 to your computer and use it in GitHub Desktop.
// log.js
// https://github.com/bgrins/devtools-snippets
// Adds a `log` function to window object.
// http://www.briangrinstead.com/blog/console-log-helper-function
(function() {
window.log = Function.prototype.bind.call(console.log, console);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment