(option)
| 41129 | } |
| 41130 | ts.convertToObjectWorker = convertToObjectWorker; |
| 41131 | function getCompilerOptionValueTypeString(option) { |
| 41132 | return option.type === "list" ? |
| 41133 | "Array" : |
| 41134 | ts.isString(option.type) ? option.type : "string"; |
| 41135 | } |
| 41136 | function isCompilerOptionsValue(option, value) { |
| 41137 | if (option) { |
| 41138 | if (isNullOrUndefined(value)) |
no outgoing calls
no test coverage detected