indirect eval

Tags
javascript
Created
Apr 22, 2019 5:13 AM

http://2ality.com/2014/01/eval.html

// 上下文是 global
class Global {getThis() {return (0, eval)('this')}}
class Scope {getThis() {return (eval)('this')}}

indirect eval() executes it in global scope.

可以使用这个方法来检测 eval 是否被修改

SuperMade with Super