Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
trueadm committed Nov 16, 2024
1 parent 3b1b284 commit 1c4596d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export function is_pure(node, context) {

/** @type {Expression | Super | null} */
let left = node;
while (left.type === 'MemberExpression' && !left.computed) {
while (left.type === 'MemberExpression') {
left = left.object;
}

Expand Down

0 comments on commit 1c4596d

Please sign in to comment.