Skip to content

Instantly share code, notes, and snippets.

@djom202
Last active July 18, 2016 13:56
Show Gist options
  • Save djom202/ab04b45ec3fbc038eb7a296d720bc350 to your computer and use it in GitHub Desktop.
Save djom202/ab04b45ec3fbc038eb7a296d720bc350 to your computer and use it in GitHub Desktop.
Angular los console logs en Dev
(function() {
var IS_DEV = true;
if (window.console && console.log) {
var oldFnLog = console.log;
console.log = function() {
IS_DEV && oldFnLog.apply(this, arguments);
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment