mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
5 lines
145 B
TypeScript
5 lines
145 B
TypeScript
export default function firstUpper(s: string): string {
|
|
if (typeof s !== 'string') return '';
|
|
return s.charAt(0).toUpperCase() + s.slice(1);
|
|
}
|