Steel / api /src /utils /text.ts
supernovagateway's picture
Upload folder using huggingface_hub
fb38ec5 verified
export function titleCase(input: string): string {
if (!input || typeof input !== "string") {
return "";
}
return input.charAt(0).toUpperCase() + input.slice(1);
}