Created
October 10, 2017 20:06
-
-
Save scragg0x/db08c3f3e5aeca9f8b8a833a64dc130c to your computer and use it in GitHub Desktop.
Mean Console
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 () { | |
const you = ['idiot', 'dumbass', 'dipshit', 'moron', 'shithead']; | |
const consoleError = console.error; | |
console.error = function () { | |
[].push.call(arguments, you[Math.floor(Math.random() * you.length)]); | |
consoleError.apply(null, arguments); | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment