Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save oneblackcrayon/df2ed373123c2e6978d5834120f97db3 to your computer and use it in GitHub Desktop.
Save oneblackcrayon/df2ed373123c2e6978d5834120f97db3 to your computer and use it in GitHub Desktop.
function debug(){
if (typeof console != "undefined"){
if (console.log){
if (arguments.length == 1){
console.log(arguments[0]);
} else {
console.log(arguments);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment