Skip to content

Commit 3141cd3

Browse files
fixed
1 parent 1a92fdd commit 3141cd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/converters/uuencode.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default class UUencode extends BaseTemplate {
8484

8585
// repeatedly take 60 chars from the output until it is empty
8686
for (;;) {
87-
const lArray = outArray.splice(0, 60).split(/\r?\n/)
87+
const lArray = outArray.splice(0, 60);
8888

8989
// if all chars are taken, remove eventually added pad zeros
9090
if (!outArray.length) {
@@ -150,7 +150,7 @@ export default class UUencode extends BaseTemplate {
150150
break;
151151
}
152152

153-
// fix missing spaces for original charset
153+
// fix probably missing spaces for original charset
154154
else if (lArray.length !== 60 && settings.version === "original") {
155155
while (inArray.length % 60) {
156156
inArray.push(" ");

0 commit comments

Comments
 (0)