kopia lustrzana https://github.com/c9/core
13 wiersze
159 B
JavaScript
13 wiersze
159 B
JavaScript
![]() |
function hoi() {
|
||
|
console.log(arguments);
|
||
|
}
|
||
|
|
||
|
setInterval(function() {
|
||
|
hoi("daar", "wereld");
|
||
|
}, 2000);
|
||
|
|
||
|
module.exports.hoi = hoi;
|
||
|
|
||
|
exports.hoi2 = hoi;
|
||
|
|