Files
Cloud-Blog/utils/helper.ts
Al Asad Nur Riyad eece29af28 Update readme and add myself page
Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
2023-05-04 01:50:28 +06:00

8 lines
206 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
}