Skip to content

Commit 5c1585c

Browse files
committed
chore: npm run fix to fix linting issues
1 parent ae24946 commit 5c1585c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/range/Boundaries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const moveRangeBoundariesDownTree = (range: Range): void => {
4848
if (!child || isLeaf(child)) {
4949
if (startOffset) {
5050
child = startContainer.childNodes[startOffset - 1];
51-
let prev = child.previousSibling;
51+
const prev = child.previousSibling;
5252
// If we have an empty text node next to another text node,
5353
// just skip and remove it.
5454
while (

0 commit comments

Comments
 (0)