We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc52adf commit 2cab717Copy full SHA for 2cab717
lib/FormDataEncoder.ts
@@ -19,7 +19,7 @@ export interface FormDataEncoderOptions {
19
enableAdditionalHeaders?: boolean
20
}
21
22
-const defaultOptionss: FormDataEncoderOptions = {
+const defaultOptions: FormDataEncoderOptions = {
23
enableAdditionalHeaders: false
24
25
@@ -151,7 +151,7 @@ export class FormDataEncoder {
151
// ? and go through entries during initialization.
152
this.#form = form
153
154
- this.#options = {...defaultOptionss, ...options}
+ this.#options = {...defaultOptions, ...options}
155
156
this.#CRLF_BYTES = this.#encoder.encode(this.#CRLF)
157
this.#CRLF_BYTES_LENGTH = this.#CRLF_BYTES.byteLength
0 commit comments