PromucFlow_constructor/app/client/src/workers/Evaluation/indirectEval.ts
2022-12-01 03:28:58 +05:30

6 lines
246 B
TypeScript

export default function indirectEval(script: string) {
/* Indirect eval to prevent local scope access.
Ref. - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval#description */
return (1, eval)(script);
}