Files
node_learning_module_1/day11/utils/index.js
T
ryanwong a07577bffa day 11
2022-02-06 22:15:10 -05:00

11 lines
277 B
JavaScript
Executable File

function capitalizeFirstLetter(target) {
if (typeof target !== 'string') {
throw new Error('Parameter should be a string.');
}
return target?.substring(0, 1).toUpperCase() + target?.substring(1)?.toLocaleLowerCase();
}
module.exports = {
capitalizeFirstLetter,
};