@dxos/util 0.8.2-main.2f9c567 → 0.8.2-main.36232bc

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.
@@ -2079,19 +2079,6 @@ var removeUndefinedProperties = (object) => {
2079
2079
  }
2080
2080
  return object;
2081
2081
  };
2082
-
2083
- // packages/common/util/src/clear-undefined.ts
2084
- var clearUndefined = (obj) => {
2085
- for (const key of [
2086
- ...Object.getOwnPropertyNames(obj),
2087
- ...Object.getOwnPropertySymbols(obj)
2088
- ]) {
2089
- if (obj[key] === void 0) {
2090
- delete obj[key];
2091
- }
2092
- }
2093
- return obj;
2094
- };
2095
2082
  export {
2096
2083
  BitField,
2097
2084
  Callback,
@@ -2115,7 +2102,6 @@ export {
2115
2102
  capitalize,
2116
2103
  chunkArray,
2117
2104
  clamp,
2118
- clearUndefined,
2119
2105
  compareMulti,
2120
2106
  compareObject,
2121
2107
  compareScalar,