hook `Function`:
```js
Function.prototype.__defineGetter__('constructor', function() {
return function(...args) {
console.log('code:', ...args);
return Function(...args);
};
});
// run code here
```
hook eval :
```js
Function.prototype.__defineGetter__('eval', function() {
return function(...args) {
console.log('code:', ...args);
return Function(...args);
};
});
// run code here
```