mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
151 Bytes
export default function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}