@bizy/core 19.14.5 → 19.14.6

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.
@@ -2580,23 +2580,7 @@ class BizyFilterPipe {
2580
2580
  return `__DATE__:${value.toISOString()}`;
2581
2581
  return value;
2582
2582
  }
2583
- // Sort keys consistently
2584
- const ordered = sortKeys(obj);
2585
- return JSON.stringify(ordered, replacer);
2586
- }
2587
- function sortKeys(obj) {
2588
- if (Array.isArray(obj)) {
2589
- return obj.map(sortKeys);
2590
- }
2591
- else if (obj && typeof obj === 'object' && !(obj instanceof Date)) {
2592
- return Object.keys(obj)
2593
- .sort()
2594
- .reduce((acc, key) => {
2595
- acc[key] = sortKeys(obj[key]);
2596
- return acc;
2597
- }, {});
2598
- }
2599
- return obj;
2583
+ return JSON.stringify(obj, replacer);
2600
2584
  }
2601
2585
  function uniqueObjects(items) {
2602
2586
  const seen = new Set();