(folder: string)
| 201 | } |
| 202 | |
| 203 | export function hasPubspec(folder: string): boolean { |
| 204 | return existsAndIsFileSync(path.join(folder, "pubspec.yaml")); |
| 205 | } |
| 206 | |
| 207 | async function hasPubspecAsync(folder: string): Promise<boolean> { |
| 208 | return await existsAndIsFileAsync(path.join(folder, "pubspec.yaml")); |
no test coverage detected