nitro-nightly 3.0.1-20251224-090153-0f3740df → 3.0.1-20251224-090424-fb6b85d0
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/_build/shared3.mjs +1 -1
- package/package.json +1 -1
package/dist/_build/shared3.mjs
CHANGED
|
@@ -756,7 +756,7 @@ function astToObject(node) {
|
|
|
756
756
|
}
|
|
757
757
|
return obj;
|
|
758
758
|
}
|
|
759
|
-
case "ArrayExpression": return node.elements.map((el) => astToObject(el)).filter(
|
|
759
|
+
case "ArrayExpression": return node.elements.map((el) => astToObject(el)).filter((obj) => obj !== void 0);
|
|
760
760
|
case "Literal": return node.value;
|
|
761
761
|
}
|
|
762
762
|
}
|
package/package.json
CHANGED