Last active
July 18, 2016 13:56
-
-
Save djom202/ab04b45ec3fbc038eb7a296d720bc350 to your computer and use it in GitHub Desktop.
Angular los console logs en Dev
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 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