(file: string)
| 133 | } |
| 134 | |
| 135 | export function isDartFile(file: string): boolean { |
| 136 | return !!file && path.extname(file).toLowerCase() === ".dart" && existsAndIsFileSync(file); |
| 137 | } |
| 138 | |
| 139 | export function isInsideFolderNamed(file: string | undefined, folderName: string): boolean { |
| 140 | if (!file) |
no test coverage detected