Last active
January 24, 2018 18:56
-
-
Save jbrantly/b6a0792e1e79bf31d674583643b2fcfc 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() { | |
var pre = document.createElement('pre'); | |
document.body.appendChild(pre); | |
console = { | |
log: function() { | |
pre.innerHTML += Array.prototype.slice.call(arguments).map(function(s) { if (s === undefined) return 'undefined'; return s }).join(" ") + "\n"; | |
} | |
} | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment