mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
13 lines
159 B
JavaScript
13 lines
159 B
JavaScript
function hoi() {
|
|
console.log(arguments);
|
|
}
|
|
|
|
setInterval(function() {
|
|
hoi("daar", "wereld");
|
|
}, 2000);
|
|
|
|
module.exports.hoi = hoi;
|
|
|
|
exports.hoi2 = hoi;
|
|
|