coyotte508's picture
coyotte508 HF staff
πŸ› Fix page switching
c379e82
raw history blame
No virus
123 Bytes
export function upperFirst(s: string): string {
if (!s) {
return s;
}
return s[0].toLocaleUpperCase() + s.slice(1);
}