mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 21:44:13 +03:00
4 lines
123 B
TypeScript
4 lines
123 B
TypeScript
|
|
export const capitalizeFirstLetter = (text: string): string => {
|
||
|
|
return text.charAt(0).toUpperCase() + text.slice(1);
|
||
|
|
};
|