Files
node_learning_module_1/day11/utils/index.js
T

11 lines
277 B
JavaScript
Raw Normal View History

2022-02-06 22:15:10 -05:00
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,
};