Skip to content

Commit 248ff57

Browse files
committed
Need to push the last list before returning.
1 parent c45b306 commit 248ff57

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

parse-css.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1188,6 +1188,7 @@ function parseACommaSeparatedListOfComponentValues(s) {
11881188
while(true) {
11891189
var val = consumeAComponentValue(s);
11901190
if(val instanceof EOFToken) {
1191+
listOfCVLs.push(vals);
11911192
return listOfCVLs;
11921193
} else if(val instanceof CommaToken) {
11931194
listOfCVLs.push(vals);

0 commit comments

Comments
 (0)