mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
2 changed files with 14 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||
module.exports = { |
|||
skip: true, |
|||
description: 'does not remove duplicated var declarations (#716)' |
|||
}; |
@ -0,0 +1,10 @@ |
|||
var a = 1, b = 2; |
|||
|
|||
assert.equal( a, 1 ); |
|||
assert.equal( b, 2 ); |
|||
|
|||
var a = 3, b = 4, c = 5; |
|||
|
|||
assert.equal( a, 3 ); |
|||
assert.equal( b, 4 ); |
|||
assert.equal( c, 5 ); |
Loading…
Reference in new issue