Newer
Older
NocodeToolOnRDL / src / lib / stringUtils.ts
@Sakoda2269 Sakoda2269 11 days ago 184 bytes reactに移行完了
export function capitalizeFirst(text: string | undefined): string {
    if (!text) return ""
    if (text.length === 0) return text;
    return text[0].toUpperCase() + text.slice(1);
}