@domql/utils 2.28.41 → 2.28.44

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.
@@ -175,7 +175,6 @@ const deepClone = (obj, options = {}) => {
175
175
  if ((0, import_types.isObjectLike)(value)) {
176
176
  clone2[key] = deepClone(value, {
177
177
  ...options,
178
- exclude: ["window", "document", "node"],
179
178
  visited
180
179
  });
181
180
  } else {
@@ -143,7 +143,6 @@ const deepClone = (obj, options = {}) => {
143
143
  }
144
144
  if (isObjectLike(value)) {
145
145
  clone2[key] = deepClone(value, __spreadProps(__spreadValues({}, options), {
146
- exclude: ["window", "document", "node"],
147
146
  visited
148
147
  }));
149
148
  } else {
package/object.js CHANGED
@@ -193,7 +193,6 @@ export const deepClone = (obj, options = {}) => {
193
193
  if (isObjectLike(value)) {
194
194
  clone[key] = deepClone(value, {
195
195
  ...options,
196
- exclude: ['window', 'document', 'node'],
197
196
  visited
198
197
  })
199
198
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domql/utils",
3
- "version": "2.28.41",
3
+ "version": "2.28.44",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "index.js",
@@ -24,7 +24,7 @@
24
24
  "build": "npx rimraf -I dist; npm run build:cjs; npm run build:esm",
25
25
  "prepublish": "npm run build; npm run copy:package:cjs"
26
26
  },
27
- "gitHead": "f3572ee2c95501d529813cc40a381254f51492a6",
27
+ "gitHead": "70519611a6e66b84b628e807c95227a516a40b03",
28
28
  "devDependencies": {
29
29
  "@babel/core": "^7.26.0"
30
30
  }