Skip to content

Commit e11012c

Browse files
committed
Case-sensitively test for legacy group definitions, fixes #638
1 parent 7e57f4c commit e11012c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/parse.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ function parse(source, root, options) {
300300

301301
function parseField(parent, rule, extend) {
302302
var type = next();
303-
if (lower(type) === "group") {
303+
if (type === "group") {
304304
parseGroup(parent, rule);
305305
return;
306306
}

0 commit comments

Comments
 (0)