( dir: string, callback: (file: string) => void, extension = '', )
| 218 | : undefined; |
| 219 | |
| 220 | const forEachDeepFile = ( |
| 221 | dir: string, |
| 222 | callback: (file: string) => void, |
| 223 | extension = '', |
| 224 | ): void => |
| 225 | forEachDirAndFile( |
| 226 | dir, |
| 227 | (dir) => forEachDeepFile(dir, callback, extension), |
| 228 | (file) => callback(file), |
| 229 | extension, |
| 230 | ); |
| 231 | |
| 232 | const forEachDirAndFile = ( |
| 233 | dir: string, |
no test coverage detected
searching dependent graphs…