mirror of
https://github.com/rastvl/akamai-deobfuscator-2.0.git
synced 2025-04-18 00:57:44 +08:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
class ExecutionContext {
|
|
constructor(thisValue, env) {
|
|
this.thisValue = thisValue;
|
|
this.env = env;
|
|
}
|
|
}
|
|
|
|
module.exports = ExecutionContext; |