This commit is contained in:
kdh8219 2023-05-05 22:45:01 +09:00
parent d882c886fb
commit a5550e5752
No known key found for this signature in database
GPG key ID: 2B5B609E12BB4C19

View file

@ -25,11 +25,12 @@ export function dmSlice(raw: string): string[] {
let front = txt.slice(0, 2000); let front = txt.slice(0, 2000);
let end = txt.slice(2000, txt.length); let end = txt.slice(2000, txt.length);
if (end) { if (end) {
let toLastNextLine = let toLastNextLine = front.slice(front.lastIndexOf("\n"), front.length);
"" /* 공백문자 */ +
front.slice(front.lastIndexOf("\n"), front.length);
front = front.slice(0, front.lastIndexOf("\n")); front = front.slice(0, front.lastIndexOf("\n"));
end = toLastNextLine + end; end = toLastNextLine + end;
if (end.slice(0, 1) == "\n") {
end = "" /* 공백문자 */ + end;
}
} }
return { front, end }; return { front, end };
} }