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