mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
7 changed files with 29 additions and 3 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'does not erroneously remove var/let/const keywords (#390)' |
|||
}; |
@ -0,0 +1,3 @@ |
|||
var a = 2, b = 3; |
|||
|
|||
assert.equal( a + b, 5 ); |
@ -0,0 +1,3 @@ |
|||
var a = 1, b = 2; |
|||
|
|||
assert.equal( a + b, 3 ); |
@ -0,0 +1,2 @@ |
|||
import './foo.js'; |
|||
import './bar.js'; |
Loading…
Reference in new issue