This commit is contained in:
velzie 2024-07-29 13:31:33 -04:00
parent ecbdb4177c
commit eaea40bfee
No known key found for this signature in database
GPG key ID: 048413F95F0DDE1F

28
src/client/shared/eval.ts Normal file
View file

@ -0,0 +1,28 @@
import { rewriteJs } from "../../shared/rewriters/js";
import { ScramjetClient } from "../client";
import { config } from "../shared";
export default function (client: ScramjetClient, self: Self) {
// used for proxying *direct eval*
// eval("...") -> eval($scramjet$rewrite("..."))
Object.defineProperty(self, config.rewritefn, {
value: function (js: any) {
if (typeof js !== "string") return js;
const rewritten = rewriteJs(js, client.url);
return rewritten;
},
writable: false,
configurable: false,
});
}
export function indirectEval(this: ScramjetClient, js: any) {
// > If the argument of eval() is not a string, eval() returns the argument unchanged
if (typeof js !== "string") return js;
const indirection = this.global.eval;
return indirection(rewriteJs(js, this.url) as string);
}