mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
8 changed files with 42 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||||
|
module.exports = { |
||||
|
solo: true, |
||||
|
description: 'handles superfluous semicolons' |
||||
|
}; |
@ -0,0 +1,7 @@ |
|||||
|
define(function () { 'use strict'; |
||||
|
|
||||
|
function x () { return 'x' }; |
||||
|
|
||||
|
assert.equal( x(), 'x' ); |
||||
|
|
||||
|
}); |
@ -0,0 +1,5 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
function x () { return 'x' }; |
||||
|
|
||||
|
assert.equal( x(), 'x' ); |
@ -0,0 +1,3 @@ |
|||||
|
function x () { return 'x' }; |
||||
|
|
||||
|
assert.equal( x(), 'x' ); |
@ -0,0 +1,7 @@ |
|||||
|
(function () { 'use strict'; |
||||
|
|
||||
|
function x () { return 'x' }; |
||||
|
|
||||
|
assert.equal( x(), 'x' ); |
||||
|
|
||||
|
})(); |
@ -0,0 +1,11 @@ |
|||||
|
(function (global, factory) { |
||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
||||
|
typeof define === 'function' && define.amd ? define(factory) : |
||||
|
factory(); |
||||
|
}(this, function () { 'use strict'; |
||||
|
|
||||
|
function x () { return 'x' }; |
||||
|
|
||||
|
assert.equal( x(), 'x' ); |
||||
|
|
||||
|
})); |
@ -0,0 +1,3 @@ |
|||||
|
function x () { return 'x' }; |
||||
|
|
||||
|
assert.equal( x(), 'x' ); |
Loading…
Reference in new issue