@almadar/evaluator 2.46.0 → 2.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -4224,6 +4224,14 @@ var OPERATOR_TABLE = {
|
|
|
4224
4224
|
"last": evalLast,
|
|
4225
4225
|
"nth": evalNth,
|
|
4226
4226
|
"includes": evalIncludes,
|
|
4227
|
+
// Legacy bare alias for 'str/join' — orbital-core's evaluator already
|
|
4228
|
+
// dispatches both spellings to the same op (`"join" | "str/join" =>
|
|
4229
|
+
// K::JoinOp`, evaluator/operators/mod.rs:121); this interpreter had no
|
|
4230
|
+
// entry at all for the bare form, so `(join arr sep)` fell through to the
|
|
4231
|
+
// generic "unknown operator, treat as literal data" path instead of
|
|
4232
|
+
// erroring OR joining — confirmed live via project-friday's Global Search
|
|
4233
|
+
// (L-26, `Almadar_LOLO_Gaps.md`).
|
|
4234
|
+
"join": evalStrJoin,
|
|
4227
4235
|
"empty": evalEmpty,
|
|
4228
4236
|
"list": evalList,
|
|
4229
4237
|
"set": (args, evaluate2, ctx) => {
|