scramjet/src/client/shared/eval.ts
2024-08-02 17:14:56 -04:00

27 lines
776 B
TypeScript

import { ScramjetClient } from "../client";
import { config, rewriteJs } 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);
}