mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-02 04:26:21 +00:00
4 lines
110 B
TypeScript
4 lines
110 B
TypeScript
![]() |
export function capitalizeFirstLetter(str: string) {
|
||
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
||
|
}
|