Skip to content

Commit 0c4d554

Browse files
authored
Serialize COMMA token as , not as a semicolon (#49)
1 parent 6f8f9d5 commit 0c4d554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse-css.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ class CommaToken extends CSSParserToken {
558558
constructor() {
559559
super("COMMA");
560560
}
561-
toSource() { return ";" }
561+
toSource() { return "," }
562562
}
563563

564564
class OpenCurlyToken extends CSSParserToken {

0 commit comments

Comments
 (0)