akamai-deobfuscator-2.0/libs/ExecutionContext.js
Vladislav Rastoropov ad0109d8f5 deob
2023-03-05 20:00:06 +03:00

8 lines
150 B
JavaScript

class ExecutionContext {
constructor(thisValue, env) {
this.thisValue = thisValue;
this.env = env;
}
}
module.exports = ExecutionContext;