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 b5b2850 commit 51f4f60Copy full SHA for 51f4f60
lib/Encoder.ts
@@ -7,6 +7,10 @@ import isFile from "./util/isFile"
7
import {FormDataLike} from "./FormDataLike"
8
import {FileLike} from "./FileLike"
9
10
+/**
11
+ * Implements [`multipart/form-data` encoding algorithm](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart/form-data-encoding-algorithm),
12
+ * allowing to add support for spec-comliant [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) to an HTTP client.
13
+ */
14
export class FormDataEncoder {
15
readonly #CRLF: string = "\r\n"
16
0 commit comments