@vchasno/ui-kit 0.2.17 → 0.2.18

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.
@@ -162,7 +162,7 @@ function _objectWithoutPropertiesLoose(r, e) {
162
162
  if (null == r) return {};
163
163
  var t = {};
164
164
  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
165
- if (e.indexOf(n) >= 0) continue;
165
+ if (e.includes(n)) continue;
166
166
  t[n] = r[n];
167
167
  }
168
168
  return t;
@@ -174,8 +174,8 @@ function _objectWithoutProperties(e, t) {
174
174
  r,
175
175
  i = _objectWithoutPropertiesLoose(e, t);
176
176
  if (Object.getOwnPropertySymbols) {
177
- var n = Object.getOwnPropertySymbols(e);
178
- for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
177
+ var s = Object.getOwnPropertySymbols(e);
178
+ for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
179
179
  }
180
180
  return i;
181
181
  }