rekwest 4.4.2 → 4.4.3

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.
package/dist/formdata.js CHANGED
@@ -167,7 +167,6 @@ class FormData {
167
167
  }
168
168
  }
169
169
  [Symbol.iterator]() {
170
- (0, _utils.brandCheck)(this, FormData);
171
170
  return this.entries();
172
171
  }
173
172
  }
package/package.json CHANGED
@@ -9,9 +9,9 @@
9
9
  },
10
10
  "devDependencies": {
11
11
  "@babel/cli": "^7.21.5",
12
- "@babel/core": "^7.21.8",
12
+ "@babel/core": "^7.22.1",
13
13
  "@babel/eslint-parser": "^7.21.8",
14
- "@babel/preset-env": "^7.21.5",
14
+ "@babel/preset-env": "^7.22.2",
15
15
  "c8": "^7.13.0",
16
16
  "eslint": "^8.41.0",
17
17
  "eslint-config-ultra-refined": "^2.13.0",
@@ -67,5 +67,5 @@
67
67
  "test:bail": "mocha --bail",
68
68
  "test:cover": "c8 --include=src --reporter=lcov --reporter=text npm test"
69
69
  },
70
- "version": "4.4.2"
70
+ "version": "4.4.3"
71
71
  }
package/src/formdata.mjs CHANGED
@@ -235,8 +235,6 @@ export class FormData {
235
235
  }
236
236
 
237
237
  [Symbol.iterator]() {
238
- brandCheck(this, FormData);
239
-
240
238
  return this.entries();
241
239
  }
242
240