(private projectRoot: string | RegExp)
| 38 | private counter: number = 0; |
| 39 | |
| 40 | constructor(private projectRoot: string | RegExp) {} |
| 41 | |
| 42 | trimProjectRootId(moduleId: string): string { |
| 43 | if (typeof this.projectRoot === "string" && moduleId.startsWith(this.projectRoot)) { |
nothing calls this directly
no outgoing calls
no test coverage detected