-
Notifications
You must be signed in to change notification settings - Fork 44
Closed
Labels
Description
Generating documentation for ES6 Generator functions doesn't work properly.
let generatorFn = function* (arg1, arg2) {};Using JsDoc on the above function only adds description and return and doesn't recognize the arguments. This is most likely due to the function regex not considering '*' a valid character in between function and parenthesis.