Skip to content

Commit

Permalink
Fix flight loader (#36282)
Browse files Browse the repository at this point in the history
* make sure `left` is defined
  • Loading branch information
shuding committed Apr 19, 2022
1 parent 90d3478 commit 3e8099e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -103,7 +103,7 @@ async function collectExports(
} = node
// exports.xxx = xxx
if (
left.object &&
left?.object &&
left.type === 'MemberExpression' &&
left.object.type === 'Identifier' &&
left.object.value === 'exports'
Expand Down

0 comments on commit 3e8099e

Please sign in to comment.