Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
&&
  • Loading branch information
nicolo-ribaudo committed Dec 14, 2017
1 parent 146cf24 commit 71fd8f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/nodes/ExportDefaultDeclaration.js
Expand Up @@ -32,7 +32,7 @@ export default class ExportDefaultDeclaration extends Node {
const remove = () => { code.remove( this.leadingCommentStart || this.start, this.next || this.end ); };
const removeExportDefault = () => { code.remove( this.start, declaration_start ); };

const treeshakeable = this.module.bundle.treeshake && !this.included & !this.declaration.included;
const treeshakeable = this.module.bundle.treeshake && !this.included && !this.declaration.included;
const name = this.variable.getName( es );
const statementStr = code.original.slice( this.start, this.end );

Expand Down

0 comments on commit 71fd8f4

Please sign in to comment.