(folderPath: string, removeBasePath: boolean)
| 232 | } |
| 233 | |
| 234 | readFolder(folderPath: string, removeBasePath: boolean): Array<string> { |
| 235 | const removeFromPathString = removeBasePath ? folderPath : '' |
| 236 | |
| 237 | return this.walkSync(folderPath, [], removeFromPathString) |
| 238 | } |
| 239 | |
| 240 | readFolderIncludingEmptyIfExists(folderPath: string, removeBasePath: boolean): Array<string> { |
| 241 | if(!this.folderExists(folderPath)) return [] |
no test coverage detected