Skip to content

Instantly share code, notes, and snippets.

@OliDM
Created August 12, 2013 00:01
Show Gist options
  • Select an option

  • Save OliDM/6207454 to your computer and use it in GitHub Desktop.

Select an option

Save OliDM/6207454 to your computer and use it in GitHub Desktop.
// Adds a `log` function to window object.
// 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