(paths: string[])
| 579 | } |
| 580 | |
| 581 | function getPath(paths: string[]): string | undefined { |
| 582 | const path = paths.shift() |
| 583 | if (existsSync(path!)) return path |
| 584 | return paths.length ? getPath(paths) : undefined |
| 585 | } |
| 586 | |
| 587 | async function localGeneratedTheme(): Promise<[string, string] | undefined> { |
| 588 | const path = determineFilePath('formkit.theme') |
no outgoing calls
no test coverage detected