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