toString检测
Function.prototype.toString = function (){
if (typeof this !== 'function') {
throw new TypeError("Function.prototype.toString requires that 'this' be a Function");
}
return '';
}
Object.create(Function.prototype.toString).toString();