@wix/entity-advanced-permissions 1.1367.0 → 1.1369.0

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.
@@ -35165,7 +35165,7 @@ function _objectWithoutPropertiesLoose(r, e) {
35165
35165
  if (null == r) return {};
35166
35166
  var t = {};
35167
35167
  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
35168
- if (e.includes(n)) continue;
35168
+ if (-1 !== e.indexOf(n)) continue;
35169
35169
  t[n] = r[n];
35170
35170
  }
35171
35171
  return t;
@@ -53106,8 +53106,8 @@ function _objectWithoutProperties(e, t) {
53106
53106
  r,
53107
53107
  i = _objectWithoutPropertiesLoose(e, t);
53108
53108
  if (Object.getOwnPropertySymbols) {
53109
- var s = Object.getOwnPropertySymbols(e);
53110
- for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
53109
+ var n = Object.getOwnPropertySymbols(e);
53110
+ for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
53111
53111
  }
53112
53112
  return i;
53113
53113
  }