-
-
Save oneblackcrayon/df2ed373123c2e6978d5834120f97db3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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