Skip to content

Instantly share code, notes, and snippets.

@dolvik
Last active October 11, 2017 12:15
Show Gist options
  • Save dolvik/46a3078f534501143e105e0a82c3e759 to your computer and use it in GitHub Desktop.
Save dolvik/46a3078f534501143e105e0a82c3e759 to your computer and use it in GitHub Desktop.
Log function that is used ing https://github.com/visionmedia/debug
//https://github.com/visionmedia/debug
function log() {
// this hackery is required for IE8/9, where
// the `console.log` function doesn't have 'apply'
return 'object' === typeof console
&& console.log
&& Function.prototype.apply.call(console.log, console, arguments);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment