Skip to content
On this page

.utils.GeneratorFunction

The generator function constructor for property schema types. GeneratorFunctionConstructor.

Usage example:

javascript
parser.parse(
  {
    callback: function* () {
      yield i
      yield i + 10
    },
  },
  {
    callback: parser.utils.GeneratorFunction,
  }
)
// => a 'callback' property is valid

Released under the MIT License.