Changeset: Replace `.apply()` with spread operator

pull/5268/head
Richard Hansen 2021-10-11 17:37:43 -04:00
parent 9c17b03660
commit 6d5b737140
1 changed files with 2 additions and 2 deletions

View File

@ -870,14 +870,14 @@ const textLinesMutator = (lines) => {
curLine++; curLine++;
newLines.splice(0, 1); newLines.splice(0, 1);
// insert the remaining new lines // insert the remaining new lines
Array.prototype.push.apply(curSplice, newLines); curSplice.push(...newLines);
curLine += newLines.length; curLine += newLines.length;
// insert the remaining chars from the "old" line (e.g. the line we were in // insert the remaining chars from the "old" line (e.g. the line we were in
// when we started to insert new lines) // when we started to insert new lines)
curSplice.push(theLine.substring(lineCol)); curSplice.push(theLine.substring(lineCol));
curCol = 0; // TODO(doc) why is this not set to the length of last line? curCol = 0; // TODO(doc) why is this not set to the length of last line?
} else { } else {
Array.prototype.push.apply(curSplice, newLines); curSplice.push(...newLines);
curLine += newLines.length; curLine += newLines.length;
} }
} else { } else {