Skip to content

Instantly share code, notes, and snippets.

@windley
Created April 16, 2014 17:29
Show Gist options
  • Save windley/10910748 to your computer and use it in GitHub Desktop.
Save windley/10910748 to your computer and use it in GitHub Desktop.
log: function()
{
if (this.defaults.logging && console && console.log) {
[].unshift.call(arguments, "Fuse:"); // arguments is Array-like, it's not an Array
console.log.apply(console, arguments);
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment