This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2016.
The GeneratorFunction object provides methods for generator functions. In JavaScript, every generator function is actually a GeneratorFunction object.
Note that GeneratorFunction is not a global object. It can be obtained with the following code:
const GeneratorFunction = function* () {}.constructor;
GeneratorFunction is a subclass of Function.
const GeneratorFunction = function* () {}.constructor;
const foo = new GeneratorFunction(`
yield 'a';
yield 'b';
yield 'c';
`);
let str = "";
for (const val of foo()) {
str += val;
}
console.log(str);
// Expected output: "abc"
GeneratorFunction()Creates a new GeneratorFunction object.
Also inherits instance properties from its parent Function.
These properties are defined on GeneratorFunction.prototype and shared by all GeneratorFunction instances.
GeneratorFunction.prototype.constructorThe constructor function that created the instance object. For GeneratorFunction instances, the initial value is the GeneratorFunction constructor.
GeneratorFunction.prototype.prototypeAll generator functions share the same prototype property, which is Generator.prototype. Each generator function created with the function* syntax or the GeneratorFunction() constructor also has its own prototype property, whose prototype is GeneratorFunction.prototype.prototype. When the generator function is called, its prototype property becomes the prototype of the returned generator object.
GeneratorFunction.prototype[Symbol.toStringTag]The initial value of the [Symbol.toStringTag] property is the string "GeneratorFunction". This property is used in Object.prototype.toString().
These properties are own properties of each GeneratorFunction 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 | |
GeneratorFunction |
39 | 13 | 26 | 26 | 10 | 39 | 26 | 26 | 10 | 4.0 | 39 | 10 | 1.0.0 | 1.0 | 4.0.0 |
GeneratorFunction |
39 | 13 | 26 | 26 | 10 | 39 | 26 | 26 | 10 | 4.0 | 39 | 10 | 1.0.0 | 1.0 | 4.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/GeneratorFunction