Skip to content

Commit

Permalink
Fix falseable variables considered undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Jul 18, 2024
1 parent e2d7141 commit b40ca70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/evmcrispr/src/EVMcrispr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ export class EVMcrispr {
async (n) => {
const binding = this.bindingsManager.getBindingValue(n.value, USER);

if (binding) {
if (binding !== undefined) {
return binding;
}

Expand Down

0 comments on commit b40ca70

Please sign in to comment.