Skip to content

Commit

Permalink
fix: Remove console.log call (#125)
Browse files Browse the repository at this point in the history
This seems like a leftover debug call, remove it.
  • Loading branch information
silverwind authored Apr 20, 2021
1 parent 5162791 commit 962e1ff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/utils/static-eval.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ const visitors = {
},
'MetaProperty': function MetaProperty(node) {
if (node.meta.name === 'import' && node.property.name === 'meta') {
console.log(this.vars['import.meta']);
return { value: this.vars['import.meta'] };
}
return undefined;
Expand Down Expand Up @@ -438,4 +437,4 @@ const visitors = {
return;
}
};
visitors.LogicalExpression = visitors.BinaryExpression;
visitors.LogicalExpression = visitors.BinaryExpression;

0 comments on commit 962e1ff

Please sign in to comment.