()
| 585 | } |
| 586 | |
| 587 | async function localGeneratedTheme(): Promise<[string, string] | undefined> { |
| 588 | const path = determineFilePath('formkit.theme') |
| 589 | if (path) { |
| 590 | const code = await readFile(path, 'utf-8') |
| 591 | return [code, path] |
| 592 | } |
| 593 | return undefined |
| 594 | } |
| 595 | |
| 596 | async function localTheme( |
| 597 | themeName: string |
no test coverage detected