(file: string, root: string)
| 151 | } |
| 152 | |
| 153 | export function getShortName(file: string, root: string): string { |
| 154 | return file.startsWith(withTrailingSlash(root)) |
| 155 | ? path.posix.relative(root, file) |
| 156 | : file |
| 157 | } |
| 158 | |
| 159 | export interface NormalizedHotChannelClient { |
| 160 | /** |
no test coverage detected