Skip to content

Commit c4a2474

Browse files
committed
Fix lint error
1 parent 230bf36 commit c4a2474

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/plugins/lightscript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ pp.parseForInIterationVariable = function (node, targetType = null) {
7979
}
8080

8181
this.next();
82-
node[iterType] = iterType === 'elem' || iterType === 'val'
82+
node[iterType] = iterType === "elem" || iterType === "val"
8383
? this.parseBindingAtom()
8484
: this.parseBindingIdentifier();
8585
return MATCHING_ITER_VARS[iterType];

0 commit comments

Comments
 (0)