(path string)
| 40 | } |
| 41 | |
| 42 | func PathIsBareSpecifier(path string) bool { |
| 43 | return !tspath.PathIsAbsolute(path) && !tspath.PathIsRelative(path) |
| 44 | } |
| 45 | |
| 46 | func IsExcludedByRegex(moduleSpecifier string, excludes []string) bool { |
| 47 | for _, pattern := range excludes { |
no test coverage detected