Skip to content

Instantly share code, notes, and snippets.

@nmeans
Last active December 31, 2015 16:09
Show Gist options
  • Save nmeans/8012007 to your computer and use it in GitHub Desktop.
Save nmeans/8012007 to your computer and use it in GitHub Desktop.
console.log shim
# Add a no-op version of the console object so accidental
# calls to console that leak to prod won't raise errors
# in IE < 10.
if typeof(console) == "undefined"
window.console =
log: () ->
debug: () ->
info: () ->
warn: () ->
error: () ->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment