@jsenv/core 29.1.17 → 29.1.18
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/main.js
CHANGED
|
@@ -11761,6 +11761,10 @@ const analyzeNewBlobCall = (node, {
|
|
|
11761
11761
|
}) => {
|
|
11762
11762
|
const firstArg = node.arguments[0];
|
|
11763
11763
|
|
|
11764
|
+
if (!firstArg) {
|
|
11765
|
+
return;
|
|
11766
|
+
}
|
|
11767
|
+
|
|
11764
11768
|
if (firstArg.type !== "ArrayExpression") {
|
|
11765
11769
|
return;
|
|
11766
11770
|
}
|
package/package.json
CHANGED