UNPKG

hello-bella

Version:

A simple app to help me better understand publishing to NPM. It doesn't really do anything, just a test.

11 lines (10 loc) 251 B
module.exports.greeting = function(name, timeOfDay){ switch (timeOfDay) { case 'am': return `Good morning, ${name}. Have an excellent day!`; break; case 'pm': return `Good Night, ${name}, sleep tight!!`; break; } }