scratch-storage 2.3.178 → 2.3.180

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.
@@ -284,8 +284,8 @@ function _objectWithoutProperties(e, t) {
284
284
  r,
285
285
  i = objectWithoutPropertiesLoose(e, t);
286
286
  if (Object.getOwnPropertySymbols) {
287
- var n = Object.getOwnPropertySymbols(e);
288
- for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
287
+ var s = Object.getOwnPropertySymbols(e);
288
+ for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
289
289
  }
290
290
  return i;
291
291
  }
@@ -304,7 +304,7 @@ function _objectWithoutPropertiesLoose(r, e) {
304
304
  if (null == r) return {};
305
305
  var t = {};
306
306
  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
307
- if (e.indexOf(n) >= 0) continue;
307
+ if (e.includes(n)) continue;
308
308
  t[n] = r[n];
309
309
  }
310
310
  return t;