(filepath: string)
| 9 | import { normalizeStackBlitzLink } from "./stackblitz" |
| 10 | |
| 11 | export async function loadFile(filepath: string) { |
| 12 | if (fs.existsSync(filepath)) |
| 13 | return await fs.readFile(filepath, "utf-8") |
| 14 | return undefined |
| 15 | } |
| 16 | |
| 17 | export async function loadLocaleVariations<T = string>( |
| 18 | filepath: string, |
no outgoing calls
no test coverage detected