5 lines
99 B
JavaScript
5 lines
99 B
JavaScript
|
// JavaScript Document
|
||
|
function test(){
|
||
|
console.log('Testing 1 2 3');
|
||
|
}
|
||
|
module.exports = { test };
|