Files
Cloud-Blog/utils/helper.ts
2024-11-09 03:18:21 +06:00

7 lines
202 B
TypeScript

export function makeFirstCharUpper(val: string) {
if (val === '') return val
const firstChar = val.at(0)?.toLocaleUpperCase() || ''
const otherChar = val.slice(1)
return firstChar + otherChar
}