2
0

🔥 Remove useless console logs

Closes #289
This commit is contained in:
Baptiste Arnaud
2023-02-06 08:02:35 +01:00
parent f42d1445c6
commit 77df5556f4
4 changed files with 0 additions and 14 deletions

View File

@ -44,7 +44,6 @@ const evaluateSetVariableExpression =
const func = Function(...variables.map((v) => v.id), evaluating)
return func(...variables.map((v) => parseCorrectValueType(v.value)))
} catch (err) {
console.log(`Evaluating: ${evaluating}`, err)
return str
}
}