forked from Github/frigate
4 lines
123 B
TypeScript
4 lines
123 B
TypeScript
export const capitalizeFirstLetter = (text: string): string => {
|
|
return text.charAt(0).toUpperCase() + text.slice(1);
|
|
};
|