This commit is contained in:
Jade (Rose) Rowland 2024-07-10 19:11:06 -04:00
parent 42000a7628
commit 94c07b6b7a

View File

@ -37,7 +37,7 @@ function safeEval(str, options = {}) {
export const evaluate = async (code, transpiler, transpilerOptions) => {
let meta = {};
if (transpiler) {
// transform syntactically correct js code to semantically usable code
const transpiled = transpiler(code, transpilerOptions);