Leon4gr45's picture
Upload folder using huggingface_hub (part 9)
b593f0b verified
Raw
History Blame Contribute Delete
189 Bytes
/**
* If either :// or // is present consider it to be an absolute url
*
* @param url string
*/
export function isAbsoluteUrl(url: string) {
return new RegExp(`(^|:)//`).test(url)
}