mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
8 years ago
8 changed files with 13 additions and 1 deletions
@ -1,5 +1,7 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
undefined.prop = 'nope'; |
|||
|
|||
lolwut.prop = '???'; |
|||
|
|||
}); |
|||
|
@ -1,3 +1,5 @@ |
|||
'use strict'; |
|||
|
|||
undefined.prop = 'nope'; |
|||
|
|||
lolwut.prop = '???'; |
|||
|
@ -1 +1,3 @@ |
|||
undefined.prop = 'nope'; |
|||
|
|||
lolwut.prop = '???'; |
|||
|
@ -1,6 +1,8 @@ |
|||
(function () { |
|||
'use strict'; |
|||
|
|||
undefined.prop = 'nope'; |
|||
|
|||
lolwut.prop = '???'; |
|||
|
|||
}()); |
|||
|
@ -0,0 +1 @@ |
|||
this.prop = 'nope'; |
@ -1 +1,2 @@ |
|||
import './foo.js'; |
|||
this.prop = '???'; |
|||
|
Loading…
Reference in new issue