@bgd-labs/toolbox 0.0.36 → 0.0.37
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 +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/dist/node.js +4 -1
- package/dist/node.js.map +1 -1
- package/dist/node.mjs +4 -1
- package/dist/node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -33500,7 +33500,10 @@ function deepDiff({
|
|
|
33500
33500
|
|
|
33501
33501
|
`;
|
|
33502
33502
|
} else {
|
|
33503
|
-
const allKeys = /* @__PURE__ */ new Set([
|
|
33503
|
+
const allKeys = /* @__PURE__ */ new Set([
|
|
33504
|
+
...Object.keys(before || {}),
|
|
33505
|
+
...Object.keys(after || {})
|
|
33506
|
+
]);
|
|
33504
33507
|
for (const pathKey of allKeys) {
|
|
33505
33508
|
diff += deepDiff({
|
|
33506
33509
|
name,
|