6 lines
77 B
JavaScript
6 lines
77 B
JavaScript
|
const helloWorld = function() {
|
||
|
return ''
|
||
|
};
|
||
|
|
||
|
module.exports = helloWorld;
|