@@ -73,7 +73,6 @@ function getMainArgs() {
7373
7474/**
7575 * In strict mode, throw for possible usage errors like --foo --bar
76- *
7776 * @param {object } token - from tokens as available from parseArgs
7877 */
7978function checkOptionLikeValue ( token ) {
@@ -91,7 +90,6 @@ To specify an option argument starting with a dash use ${example}.`;
9190
9291/**
9392 * In strict mode, throw for usage errors.
94- *
9593 * @param {object } config - from config passed to parseArgs
9694 * @param {object } token - from tokens as available from parseArgs
9795 */
@@ -116,7 +114,6 @@ function checkOptionUsage(config, token) {
116114
117115/**
118116 * Store the option value in `values`.
119- *
120117 * @param {string } longOption - long option name e.g. 'foo'
121118 * @param {string|undefined } optionValue - value from user args
122119 * @param {object } options - option configs, from parseArgs({ options })
@@ -148,7 +145,6 @@ function storeOption(longOption, optionValue, options, values) {
148145
149146/**
150147 * Store the default option value in `values`.
151- *
152148 * @param {string } longOption - long option name e.g. 'foo'
153149 * @param {string
154150 * | boolean
@@ -169,7 +165,6 @@ function storeDefaultOption(longOption, optionValue, values) {
169165 * - option (along with value, if any)
170166 * - positional
171167 * - option-terminator
172- *
173168 * @param {string[] } args - from parseArgs({ args }) or mainArgs
174169 * @param {object } options - option configs, from parseArgs({ options })
175170 */
0 commit comments