mirror of https://github.com/lukechilds/rollup.git
Brian Donovan
8 years ago
committed by
GitHub
8 changed files with 37 additions and 1 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'preserves empty statements used as the consequent of conditionals' |
|||
}; |
@ -0,0 +1,6 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
if ( a === 0 ); |
|||
else a++; |
|||
|
|||
}); |
@ -0,0 +1,4 @@ |
|||
'use strict'; |
|||
|
|||
if ( a === 0 ); |
|||
else a++; |
@ -0,0 +1,2 @@ |
|||
if ( a === 0 ); |
|||
else a++; |
@ -0,0 +1,7 @@ |
|||
(function () { |
|||
'use strict'; |
|||
|
|||
if ( a === 0 ); |
|||
else a++; |
|||
|
|||
}()); |
@ -0,0 +1,10 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
(factory()); |
|||
}(this, (function () { 'use strict'; |
|||
|
|||
if ( a === 0 ); |
|||
else a++; |
|||
|
|||
}))); |
@ -0,0 +1,2 @@ |
|||
if ( a === 0 ); |
|||
else a++; |
Loading…
Reference in new issue