//hook Function
Function.prototype._constructor = Function.prototype.constructor;
Function.prototype.constructor = function() {
if(arguments && typeof arguments[0]==='string'){
if("debugger" === arguments[0]){
return
}
}
return Function.prototype._constructor.apply(this, arguments);
}