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.
Constructor
- AsyncGeneratorFunction()
- : Creates a new
AsyncGeneratorFunction
object.
- : Creates a new
Instance properties
Also inherits instance properties from its parent Function.
These properties are defined on AsyncGeneratorFunction.prototype
and shared by all AsyncGeneratorFunction
instances.
- AsyncGeneratorFunction.prototype.constructor
- : The constructor function that created the instance object. For
AsyncGeneratorFunction
instances, the initial value is the AsyncGeneratorFunction constructor.
- : The constructor function that created the instance object. For
AsyncGeneratorFunction.prototype.prototype
- : All async generator functions share the same
prototype
property, which isAsyncGenerator.prototype
. Each async generator function instance also has its ownprototype
property. When the async generator function is called, the returned async generator object inherits from the async generator function'sprototype
property, which in turn inherits fromAsyncGeneratorFunction.prototype.prototype
.
- : All async generator functions share the same
AsyncGeneratorFunction.prototype[@@toStringTag]
- : The initial value of the
@@toStringTag
property is the string"AsyncGeneratorFunction"
. This property is used in Object.prototype.toString.
- : The initial value of the
Instance methods
Inherits instance methods from its parent Function.