mirror of
https://github.com/tinyauthapp/tinyauth.git
synced 2026-08-26 15:23:32 +08:00
1 line
80 B
TypeScript
1 line
80 B
TypeScript
export const capitalize = (s: string) => s.charAt(0).toUpperCase() + s.slice(1); |