* Pass through options that come after command-arguments rather than treat them as command-options, * so actual command-options come before command-arguments. Turning this on for a subcommand requires * positional options to have been enabled on the program (parent commands). * The default
(passThrough = true)
| 864 | * @return {Command} `this` command for chaining |
| 865 | */ |
| 866 | passThroughOptions(passThrough = true) { |
| 867 | this._passThroughOptions = !!passThrough; |
| 868 | this._checkForBrokenPassThrough(); |
| 869 | return this; |
| 870 | } |
| 871 | |
| 872 | /** |
| 873 | * @private |