DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame contribute delete
124 Bytes
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');