feat(sel): enable division and multiplication

This commit is contained in:
Viren070
2025-11-24 13:07:29 +00:00
parent 62b28480d8
commit 550d8d77fb
+2 -2
View File
@@ -20,9 +20,9 @@ export abstract class StreamExpressionEngine {
add: true,
concatenate: false,
conditional: true,
divide: false,
divide: true,
factorial: false,
multiply: false,
multiply: true,
power: false,
remainder: false,
subtract: true,