Skip to content

Commit 3d904bb

Browse files
committed
chore: update deps, code style
1 parent d38b7c0 commit 3d904bb

File tree

3 files changed

+1317
-2115
lines changed

3 files changed

+1317
-2115
lines changed

lib/nodes/inline-comment.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ module.exports = {
2020
remainingInput += this.input.css.valueOf().substring(this.tokenizer.position());
2121

2222
// Replace tokenizer to retokenize the rest of the string
23-
const newInput = new Input(remainingInput);
24-
this.input = newInput;
25-
this.tokenizer = tokenizer(newInput);
23+
this.input = new Input(remainingInput);
24+
this.tokenizer = tokenizer(this.input);
2625
} else {
2726
// If the tokenizer went to the next line go back
2827
this.tokenizer.back(token);

0 commit comments

Comments
 (0)