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 03722ec commit ec55579Copy full SHA for ec55579
lib/index.ts
@@ -4,4 +4,3 @@ export * from "./Encoder"
4
5
export {default as isFileLike} from "./util/isFile"
6
export {default as isFormDataLike} from "./util/isFormData"
7
-export {default as createBoundary} from "./util/createBoundary"
lib/util/createBoundary.ts
@@ -3,6 +3,8 @@ const alphabet
3
/**
* Generates a boundary string for FormData encoder.
+ *
+ * @param size The size of the resulting string
8
*/
9
function createBoundary(size: number): string {
10
let res = ""
0 commit comments