This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
The AsyncGeneratorFunction object provides methods for async generator functions. In JavaScript, every async generator function is actually an AsyncGeneratorFunction object.
Note that AsyncGeneratorFunction is not a global object. It can be obtained with the following code:
const AsyncGeneratorFunction = async function* () {}.constructor;
AsyncGeneratorFunction is a subclass of Function.
const AsyncGeneratorFunction = async function* () {}.constructor;
const foo = new AsyncGeneratorFunction(`
yield await Promise.resolve('a');
yield await Promise.resolve('b');
yield await Promise.resolve('c');
`);
let str = "";
async function generate() {
for await (const val of foo()) {
str += val;
}
console.log(str);
}
generate();
// Expected output: "abc"
AsyncGeneratorFunction()Creates a new AsyncGeneratorFunction object.
Also inherits instance properties from its parent Function.
These properties are defined on AsyncGeneratorFunction.prototype and shared by all AsyncGeneratorFunction instances.
AsyncGeneratorFunction.prototype.constructorThe constructor function that created the instance object. For AsyncGeneratorFunction instances, the initial value is the AsyncGeneratorFunction constructor.
AsyncGeneratorFunction.prototype.prototypeAll async generator functions share the same prototype property, which is AsyncGenerator.prototype. Each async generator function created with the async function* syntax or the AsyncGeneratorFunction() constructor also has its own prototype property, whose prototype is AsyncGeneratorFunction.prototype.prototype. When the async generator function is called, its prototype property becomes the prototype of the returned async generator object.
AsyncGeneratorFunction.prototype[Symbol.toStringTag]The initial value of the [Symbol.toStringTag] property is the string "AsyncGeneratorFunction". This property is used in Object.prototype.toString().
These properties are own properties of each AsyncGeneratorFunction instance.
Inherits instance methods from its parent Function.
| Desktop | Mobile | Server | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | Bun | Deno | Node.js | |
AsyncGeneratorFunction |
63 | 79 | 55 | 50 | 12 | 63 | 55 | 46 | 12 | 8.0 | 63 | 12 | 1.0.0 | 1.0 | 10.0.0 |
AsyncGeneratorFunction |
63 | 79 | 55 | 50 | 12 | 63 | 55 | 46 | 12 | 8.0 | 63 | 12 | 1.0.0 | 1.0 | 10.0.0 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGeneratorFunction