Skip to content

Instantly share code, notes, and snippets.

@somebox
Created August 1, 2011 15:13
Show Gist options
  • Save somebox/1118314 to your computer and use it in GitHub Desktop.
Save somebox/1118314 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