(
objPath: string[] = [],
twConfig = twCtx.use().config,
)
| 11 | const templates: ResolvedNuxtTemplate<any>[] = [] |
| 12 | |
| 13 | const getTWConfig = ( |
| 14 | objPath: string[] = [], |
| 15 | twConfig = twCtx.use().config, |
| 16 | ) => objPath.reduce((prev, curr) => prev?.[curr], twConfig as Record<string, any>) |
| 17 | |
| 18 | const populateMap = (obj: any = twCtx.use().config, path: string[] = [], level = 1) => { |
| 19 | Object.entries(obj).forEach(([key, value = {} as any]) => { |
no outgoing calls
no test coverage detected