@supernova-studio/model 1.10.13 → 1.10.14
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 +1 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1079,9 +1079,7 @@ function applyShallowObjectUpdate(object, update) {
|
|
|
1079
1079
|
return objectShallowCopy;
|
|
1080
1080
|
}
|
|
1081
1081
|
function pickDefined(obj) {
|
|
1082
|
-
return Object.fromEntries(
|
|
1083
|
-
Object.entries(obj).filter(([_, v]) => v !== void 0)
|
|
1084
|
-
);
|
|
1082
|
+
return Object.fromEntries(Object.entries(obj).filter(([_, v]) => v !== void 0));
|
|
1085
1083
|
}
|
|
1086
1084
|
|
|
1087
1085
|
// src/utils/content-loader-instruction.ts
|