(config: any, overrides?: Record<string, any>)
| 246 | } |
| 247 | |
| 248 | export async function normalizeConfig(config: any, overrides?: Record<string, any>): Promise<any> { |
| 249 | let normalized = config; |
| 250 | |
| 251 | if (typeof config === "function") { |
| 252 | normalized = await config(); |
| 253 | } |
| 254 | |
| 255 | normalized = { ...normalized, ...overrides }; |
| 256 | |
| 257 | return normalized; |
| 258 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…