6 lines
90 B
JavaScript
6 lines
90 B
JavaScript
|
|
function mylog() {
|
||
|
|
console.log('mylog: ', ...arguments);
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = {mylog};
|