Skip to content

Commit 9bdb5bc

Browse files
committed
Fix linter error
1 parent a21c919 commit 9bdb5bc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/parser.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -765,8 +765,7 @@ const parser = (() => {
765765
key.type = 'string';
766766
key.position = n.position;
767767
a.push([key, n]); // shorthand property syntax
768-
}
769-
else {
768+
} else {
770769
advance(":");
771770
var v = expression(0);
772771
a.push([n, v]); // holds an array of name/value expression pairs

0 commit comments

Comments
 (0)