Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mathe42 committed Apr 22, 2022
1 parent bd8af5b commit d4a599a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encoding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function quotedPrintableEncode(data: string, encLB = false) {
if (encodedChar.length === 1) {
const code = encodedChar[0];

if (code >= 32 && code <= 126 && code !== 63) return ch;
if (code >= 32 && code <= 126 && code !== 61) return ch;
if (!encLB && (code === 10 || code === 13)) return ch;
if (code === 9) return ch;
}
Expand Down

0 comments on commit d4a599a

Please sign in to comment.