PromucFlow_constructor/app/client/src/workers/Evaluation/indirectEval.ts

6 lines
246 B
TypeScript
Raw Normal View History

2022-11-30 21:58:58 +00:00
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);
}