8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
|
function capitalizeFirstLetter (str: string) {
|
||
|
return str.charAt(0).toUpperCase() + str.slice(1)
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
capitalizeFirstLetter
|
||
|
}
|