You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Multipart.ts
+45Lines changed: 45 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -59,13 +59,58 @@ export class Multipart implements Part {
59
59
* @param parts The parts to include in the multipart
60
60
* @param [boundary] The multipart boundary used to separate the parts. Randomly generated if not provided
61
61
* @param [mediaType] The media type of the multipart. Defaults to "multipart/mixed"
62
+
*
63
+
* @throws {RangeError} If the boundary is invalid. A valid boundary is 1 to 70 characters long, does not end with space, and may only contain: A-Z a-z 0-9 '()+_,-./:=? and space
0 commit comments