Skip to content

Instantly share code, notes, and snippets.

@emphaticsunshine
Created August 4, 2012 14:53
Show Gist options
  • Select an option

  • Save emphaticsunshine/3258219 to your computer and use it in GitHub Desktop.

Select an option

Save emphaticsunshine/3258219 to your computer and use it in GitHub Desktop.
Console wrapper
var Logger = {
log : function( msg ) {
if( console ) {
console.log(msg);
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment