viabiliza/node_modules/async-generator-function/legacy.js
equipe desenvolvimento a499796cf7 first commit
2025-10-15 15:07:36 -03:00

19 lines
399 B
JavaScript

'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;
};