Trireme's picture
Upload folder using huggingface_hub
6655e35 verified
Raw
History Blame Contribute Delete
399 Bytes
'use strict';
/** @type {import('.').AsyncGeneratorFunctionConstructor | false} */
var cached;
/** @type {import('.')} */
module.exports = function getAsyncGeneratorFunction() {
if (typeof cached === 'undefined') {
try {
// eslint-disable-next-line no-new-func
cached = Function('return async function* () {}')().constructor;
} catch (e) {
cached = false;
}
}
return cached;
};