Update helloWorld.js

This commit is contained in:
Priyanshu Jain 2023-01-30 19:59:46 +05:30 committed by GitHub
parent 8746ce056a
commit 74c1c936dd
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;