File size: 123 Bytes
652223b
c379e82
 
 
652223b
 
1
2
3
4
5
6
7
export function upperFirst(s: string): string {
	if (!s) {
		return s;
	}
	return s[0].toLocaleUpperCase() + s.slice(1);
}