Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
289 Bytes
export const isValidHttpUrl = (string: string) => {
let url
try {
url = new URL(string)
} catch (_) {
return false
}
return url.protocol === 'http:' || url.protocol === 'https:'
}
export const capitalize = (str: string) =>
str.charAt(0).toUpperCase() + str.slice(1)