scratch-storage 2.3.97 → 2.3.98

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.98](https://github.com/scratchfoundation/scratch-storage/compare/v2.3.97...v2.3.98) (2024-04-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** lock file maintenance ([5f47f25](https://github.com/scratchfoundation/scratch-storage/commit/5f47f255231460b5366a1188b4693357e608e0d4))
12
+
6
13
  ## [2.3.97](https://github.com/scratchfoundation/scratch-storage/compare/v2.3.96...v2.3.97) (2024-04-30)
7
14
 
8
15
 
@@ -313,12 +313,11 @@ module.exports = _objectWithoutProperties, module.exports.__esModule = true, mod
313
313
  function _objectWithoutPropertiesLoose(source, excluded) {
314
314
  if (source == null) return {};
315
315
  var target = {};
316
- var sourceKeys = Object.keys(source);
317
- var key, i;
318
- for (i = 0; i < sourceKeys.length; i++) {
319
- key = sourceKeys[i];
320
- if (excluded.indexOf(key) >= 0) continue;
321
- target[key] = source[key];
316
+ for (var key in source) {
317
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
318
+ if (excluded.indexOf(key) >= 0) continue;
319
+ target[key] = source[key];
320
+ }
322
321
  }
323
322
  return target;
324
323
  }