(base: string, path: string)
| 152 | } |
| 153 | |
| 154 | resolvePath(base: string, path: string): string { |
| 155 | return normalizePath(path.startsWith("/") ? path : `${base}/${path}`); |
| 156 | } |
| 157 | |
| 158 | async glob(pattern: string): Promise<string[]> { |
| 159 | return (await this.ws.glob(pattern)).map((e) => e.path); |
nothing calls this directly
no test coverage detected