mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
15 lines
217 B
JavaScript
15 lines
217 B
JavaScript
function simpleFunction() {
|
|
}
|
|
|
|
function simpleFunctionNested(a, b) {
|
|
function nested(c) {
|
|
}
|
|
}
|
|
|
|
(function() {
|
|
var someFunction = function(a, b) {
|
|
};
|
|
|
|
someFunction.bla = function() {
|
|
};
|
|
})(); |