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 b8835f4 commit 7b1cc9cCopy full SHA for 7b1cc9c
src/Multipart.ts
@@ -444,15 +444,15 @@ export class Multipart implements Part {
444
if (
445
byte === Multipart.HT
446
|| byte === Multipart.SP
447
- || byte === 0x22
448
- || byte === 0x28
449
- || byte === 0x29
450
- || byte === 0x2c
451
- || byte === 0x2f
452
- || (byte >= Multipart.COLON && byte <= 0x40)
453
- || (byte >= 0x5b && byte <= 0x5d)
454
- || byte === 0x7b
455
- || byte === 0x7d
+ || byte === 0x22 // "
+ || byte === 0x28 // (
+ || byte === 0x29 // )
+ || byte === 0x2c // ,
+ || byte === 0x2f // /
+ || (byte >= Multipart.COLON && byte <= 0x40) // :;<=>@
+ || (byte >= 0x5b && byte <= 0x5d) // [\]
+ || byte === 0x7b // {
+ || byte === 0x7d // }
456
) return true;
457
}
458
return false;
0 commit comments