(state, configFilePath)
| 124246 | return !!entry.options; |
| 124247 | } |
| 124248 | function getCachedParsedConfigFile(state, configFilePath) { |
| 124249 | var value = state.configFileCache.get(configFilePath); |
| 124250 | return value && isParsedCommandLine(value) ? value : undefined; |
| 124251 | } |
| 124252 | function parseConfigFile(state, configFileName, configFilePath) { |
| 124253 | var configFileCache = state.configFileCache; |
| 124254 | var value = configFileCache.get(configFilePath); |
no test coverage detected