@dxos/util 0.7.2-main.f1adc9f → 0.7.2

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.
@@ -1809,10 +1809,6 @@ var stripUndefinedValues = (obj) => {
1809
1809
  }
1810
1810
  return obj;
1811
1811
  };
1812
- var sortKeys = (obj) => Object.keys(obj).sort().reduce((sorted, key) => {
1813
- sorted[key] = obj[key];
1814
- return sorted;
1815
- }, {});
1816
1812
  var arrayMove = (array, from, to) => {
1817
1813
  array.splice(to < 0 ? array.length + to : to, 0, array.splice(from, 1)[0]);
1818
1814
  return array;
@@ -2059,7 +2055,6 @@ export {
2059
2055
  safeParseInt,
2060
2056
  safeParseJson,
2061
2057
  setDeep,
2062
- sortKeys,
2063
2058
  stringToArray,
2064
2059
  stringifyTree,
2065
2060
  stripUndefinedValues,