@aiszlab/relax 1.2.60 → 1.2.61

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.
@@ -99,8 +99,8 @@ function _objectWithoutProperties(e, t) {
99
99
  r,
100
100
  i = _objectWithoutPropertiesLoose(e, t);
101
101
  if (Object.getOwnPropertySymbols) {
102
- var n = Object.getOwnPropertySymbols(e);
103
- for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
102
+ var s = Object.getOwnPropertySymbols(e);
103
+ for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
104
104
  }
105
105
  return i;
106
106
  }
@@ -108,7 +108,7 @@ function _objectWithoutPropertiesLoose(r, e) {
108
108
  if (null == r) return {};
109
109
  var t = {};
110
110
  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
111
- if (e.indexOf(n) >= 0) continue;
111
+ if (e.includes(n)) continue;
112
112
  t[n] = r[n];
113
113
  }
114
114
  return t;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiszlab/relax",
3
- "version": "1.2.60",
3
+ "version": "1.2.61",
4
4
  "description": "react utils collection",
5
5
  "type": "module",
6
6
  "exports": {
@@ -26,7 +26,7 @@
26
26
  "rxjs": "^7.8.1"
27
27
  },
28
28
  "devDependencies": {
29
- "@babel/core": "^7.24.7",
29
+ "@babel/core": "^7.24.9",
30
30
  "@babel/preset-env": "^7.24.8",
31
31
  "@babel/preset-typescript": "^7.24.7",
32
32
  "@jest/globals": "^29.7.0",