AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
export function ExcludesNull<T>(x: T | null): x is T {
return x !== null
}