Files
Cloud-Blog/app/utils/helper.ts
2025-12-20 18:46:45 +08:00

7 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;
}