(currentDir: string)
| 179 | |
| 180 | const applyEntryToFiles = |
| 181 | (currentDir: string) => |
| 182 | (entry: { |
| 183 | readonly name: string; |
| 184 | readonly isDirectory: () => boolean; |
| 185 | readonly isFile: () => boolean; |
| 186 | }) => |
| 187 | (currentFiles: readonly string[]) => { |
| 188 | const processor = processDirectoryEntry(currentDir, currentFiles); |
| 189 | return processor(entry); |
| 190 | }; |
| 191 | |
| 192 | const checkIsDirectory = (fullPath: string) => |
| 193 | pipe( |
no test coverage detected