mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-12 03:27:07 +08:00
29 lines
489 B
JavaScript
29 lines
489 B
JavaScript
f = Function;
|
|
Function = function (a) {
|
|
if (a !== 'debugger') {
|
|
return f(a)
|
|
}
|
|
};
|
|
|
|
Function.prototype.constructor_ = Function.prototype.constructor;
|
|
Function.prototype.constructor = function (x) {
|
|
if (x !== 'debugger') {
|
|
return Function.prototype.constructor_(x)
|
|
}
|
|
};
|
|
|
|
|
|
eval_ = eval;
|
|
eval = function (a) {
|
|
if (a == 'debugger') {
|
|
return ''
|
|
} else {
|
|
return eval_(a)
|
|
}
|
|
};
|
|
|
|
setInterval = function () {
|
|
};
|
|
|
|
console.log_ = console.log;
|