Update helloWorld.js

This commit is contained in:
chl797 2022-05-05 15:07:35 -07:00 committed by GitHub
parent 0747078d97
commit b4ff1c6e4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
const helloWorld = function() { const helloWorld = function() {
return '' return 'Hello World!'
}; };
module.exports = helloWorld; module.exports = helloWorld;