(value: unknown)
| 3038 | } |
| 3039 | |
| 3040 | const isObject = (value: unknown): value is object => |
| 3041 | typeof value === "object" && value !== null; |
| 3042 | |
| 3043 | if (!isObject(options) && !Array.isArray(options)) { |
| 3044 | this.logger.error(`Invalid configuration in '${configPath}'`); |
nothing calls this directly
no outgoing calls
no test coverage detected