mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
4 lines
133 B
TypeScript
4 lines
133 B
TypeScript
|
|
export const capitalize = <T extends string>(str: T) => {
|
||
|
|
return (str.charAt(0).toUpperCase() + str.slice(1)) as Capitalize<T>;
|
||
|
|
};
|