mirror of https://github.com/lukechilds/rollup.git
mnater
9 years ago
11 changed files with 28 additions and 20 deletions
@ -1,7 +1,8 @@ |
|||||
(function () { 'use strict'; |
(function () { |
||||
|
'use strict'; |
||||
|
|
||||
function x () { return 'x' }; |
function x () { return 'x' }; |
||||
|
|
||||
assert.equal( x(), 'x' ); |
assert.equal( x(), 'x' ); |
||||
|
|
||||
})(); |
}()); |
||||
|
@ -1,8 +1,9 @@ |
|||||
(function () { 'use strict'; |
(function () { |
||||
|
'use strict'; |
||||
|
|
||||
var a = 'a'; |
var a = 'a'; |
||||
var b = 'b'; |
var b = 'b'; |
||||
assert.equal( a, 'a' ); |
assert.equal( a, 'a' ); |
||||
assert.equal( b, 'b' ); |
assert.equal( b, 'b' ); |
||||
|
|
||||
})(); |
}()); |
Loading…
Reference in new issue