(name: string, condition: any, message: string)
| 14 | hasOwnProperty.call(object, key); |
| 15 | |
| 16 | const parseAssert = (name: string, condition: any, message: string) => { |
| 17 | if (!condition) { |
| 18 | throw new KnownError(`Invalid config property ${name}: ${message}`); |
| 19 | } |
| 20 | }; |
| 21 | |
| 22 | const configParsers = { |
| 23 | GROQ_API_KEY(key?: string) { |
no outgoing calls
no test coverage detected