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 9675ef6 commit 322c6beCopy full SHA for 322c6be
lib/util/createBoundary.ts
@@ -4,7 +4,7 @@ import {randomBytes} from "crypto"
4
* Generates a boundary string for FormData encoder.
5
*/
6
const createBoundary = (): string => (
7
- `FormDataBoundary${randomBytes(16).toString("hex")}`
+ `form-data-boundary-${randomBytes(16).toString("hex")}`
8
)
9
10
export default createBoundary
0 commit comments