* @file cjs-module.js * A CommonJS Module written in JavaScript * @author Wes Garland, wes@distributive.network * @date Jun 2023
()
| 6 | */ |
| 7 | |
| 8 | function helloWorld() |
| 9 | { |
| 10 | console.log('hello, world!') |
| 11 | } |
| 12 | |
| 13 | exports.helloWorld = helloWorld; |
nothing calls this directly
no outgoing calls
no test coverage detected