Skip to content

Commit 322c6be

Browse files
committed
Lowercase default boundary string.
1 parent 9675ef6 commit 322c6be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/util/createBoundary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {randomBytes} from "crypto"
44
* Generates a boundary string for FormData encoder.
55
*/
66
const createBoundary = (): string => (
7-
`FormDataBoundary${randomBytes(16).toString("hex")}`
7+
`form-data-boundary-${randomBytes(16).toString("hex")}`
88
)
99

1010
export default createBoundary

0 commit comments

Comments
 (0)