mirror of https://github.com/lukechilds/rollup.git
Oskar Segersvärd
9 years ago
10 changed files with 33 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
function a () {} |
|||
|
|||
a(); |
|||
|
|||
}); |
@ -0,0 +1,5 @@ |
|||
'use strict'; |
|||
|
|||
function a () {} |
|||
|
|||
a(); |
@ -0,0 +1,3 @@ |
|||
function a () {} |
|||
|
|||
a(); |
@ -0,0 +1,7 @@ |
|||
(function () { 'use strict'; |
|||
|
|||
function a () {} |
|||
|
|||
a(); |
|||
|
|||
})(); |
@ -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 a () {} |
|||
|
|||
a(); |
|||
|
|||
})); |
Loading…
Reference in new issue