(fileNameOrPath: string)
| 100 | } |
| 101 | |
| 102 | assertInsideWorkspace(fileNameOrPath: string) { |
| 103 | const absPath = this.toAbsolutePath(fileNameOrPath); |
| 104 | if (this.isOutsideWorkspace(absPath)) throw new Error(ERROR_MSG_01); |
| 105 | } |
| 106 | |
| 107 | check(destPath: string) { |
| 108 | if (this.isRootTopRath()) return true; |
no test coverage detected