Guest User

Untitled

a guest
Dec 8th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. !(function(){
  2. var original = console;
  3. Object.defineProperty(window, 'console', {
  4. get:function(){
  5. return original;
  6. },
  7. set:function(value){
  8. original.log(value)
  9. }
  10. })
  11. })();
Add Comment
Please, Sign In to add comment