DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
220 Bytes
Promise.withResolvers || (Promise.withResolvers = function withResolvers() {
var a, b, c = new this(function (resolve, reject) {
a = resolve;
b = reject;
});
return {resolve: a, reject: b, promise: c};
});