Leon4gr45's picture
Upload folder using huggingface_hub (part 9)
4a288a7 verified
Raw
History Blame Contribute Delete
95 Bytes
export function capitalize(str: string) {
return str.replace(str[0], str[0].toUpperCase())
}