(filePath: string)
| 20 | } |
| 21 | |
| 22 | export function isAbsolutePathAny(filePath: string): boolean { |
| 23 | if (filePath.startsWith("/") || filePath.startsWith("\\")) { |
| 24 | return true; |
| 25 | } |
| 26 | |
| 27 | return /^[A-Za-z]:[\\/]/.test(filePath); |
| 28 | } |
| 29 | |
| 30 | function resolveSkillFilePath( |
| 31 | skillDir: string, |
no test coverage detected