mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
2 lines
95 B
TypeScript
2 lines
95 B
TypeScript
export const capitalize = (str: string): string => str.charAt(0).toUpperCase() + str.slice(1);
|