()
| 477 | } |
| 478 | |
| 479 | toString(): string { |
| 480 | return `<FetchRequest method=${ JSON.stringify(this.method) } url=${ JSON.stringify(this.url) } headers=${ JSON.stringify(this.headers) } body=${ this.#body ? hexlify(this.#body): "null" }>`; |
| 481 | } |
| 482 | |
| 483 | /** |
| 484 | * Update the throttle parameters used to determine maximum |
no test coverage detected