Skip to content

Commit

Permalink
chore: remove tab
Browse files Browse the repository at this point in the history
  • Loading branch information
mysteryven committed Jul 29, 2024
1 parent 2df40d2 commit 6752538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MagicString.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ export default class MagicString {
}

remove(start, end) {
const is_empty = this.original.length === 0;
const is_empty = this.original.length === 0;
while (start < 0 && !is_empty) start += this.original.length;
while (end < 0 && !is_empty) end += this.original.length;

Expand Down

0 comments on commit 6752538

Please sign in to comment.