DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
|
raw
history blame
326 Bytes

@ungap/with-resolvers

A Promise.witResolvers() polyfill.

import '@ungap/with-resolvers';
// require('@ungap/with-resolvers');

const {resolve, reject, promise} = Promise.withResolvers();

promise.then(console.log, console.error);
resolve(Math.random());