scratch-storage 2.3.178 → 2.3.179

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/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.3.179](https://github.com/scratchfoundation/scratch-storage/compare/v2.3.178...v2.3.179) (2024-07-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** lock file maintenance ([0431f29](https://github.com/scratchfoundation/scratch-storage/commit/0431f2959cea5a05c26924fe2b6c86dcb893f28c))
12
+
6
13
  ## [2.3.178](https://github.com/scratchfoundation/scratch-storage/compare/v2.3.177...v2.3.178) (2024-07-12)
7
14
 
8
15
 
@@ -275,8 +275,8 @@ function _objectWithoutProperties(e, t) {
275
275
  r,
276
276
  i = objectWithoutPropertiesLoose(e, t);
277
277
  if (Object.getOwnPropertySymbols) {
278
- var n = Object.getOwnPropertySymbols(e);
279
- for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
278
+ var s = Object.getOwnPropertySymbols(e);
279
+ for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
280
280
  }
281
281
  return i;
282
282
  }
@@ -295,7 +295,7 @@ function _objectWithoutPropertiesLoose(r, e) {
295
295
  if (null == r) return {};
296
296
  var t = {};
297
297
  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
298
- if (e.indexOf(n) >= 0) continue;
298
+ if (e.includes(n)) continue;
299
299
  t[n] = r[n];
300
300
  }
301
301
  return t;