11 lines
No EOL
178 B
JavaScript
11 lines
No EOL
178 B
JavaScript
var global = (function (module) {
|
|
|
|
function testFunction() {
|
|
console.log("test!");
|
|
}
|
|
|
|
return {
|
|
testFunction: testFunction
|
|
};
|
|
|
|
})(global || {}); |