Files
Cloud-Blog/utils/helper.ts
2023-01-10 00:13:46 +06:00

7 lines
205 B
TypeScript

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