(optionKey)
| 2008 | _parseOptionsImplied() { |
| 2009 | const dualHelper = new DualOptions(this.options); |
| 2010 | const hasCustomOptionValue = (optionKey) => { |
| 2011 | return ( |
| 2012 | this.getOptionValue(optionKey) !== undefined && |
| 2013 | !['default', 'implied'].includes(this.getOptionValueSource(optionKey)) |
| 2014 | ); |
| 2015 | }; |
| 2016 | this.options |
| 2017 | .filter( |
| 2018 | (option) => |
nothing calls this directly
no test coverage detected