mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-07-02 00:17:08 +08:00
9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
var Plan = (function () {
|
|
function Plan(parentContext, rootRequest) {
|
|
this.parentContext = parentContext;
|
|
this.rootRequest = rootRequest;
|
|
}
|
|
return Plan;
|
|
}());
|
|
export { Plan };
|