UNPKG
butternut
Version:
latest (0.4.6)
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
Experimental ES2015-aware minifier
github.com/Rich-Harris/butternut
Rich-Harris/butternut
butternut
/
src
/
program
/
types
/
ImportDefaultSpecifier.js
11 lines
(8 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Node from
'../Node.js'
; export default
class
ImportDefaultSpecifier
extends
Node
{ initialise ( program, scope ) {
this
.local.declaration =
this
; scope.addDeclaration(
this
.local,
'import'
);
super
.initialise( program, scope ); } }