(filePath: string)
| 18 | pipe(TE.tryCatch(() => fs.rm(dir, { recursive: true }), createTaggedSystemError('fs-remove-dir', { dir }))) |
| 19 | |
| 20 | export const removeFile = (filePath: string) => |
| 21 | pipe(TE.tryCatch(() => fs.unlink(filePath), createTaggedSystemError('fs-remove-file', { filePath }))) |
| 22 | |
| 23 | export const getNestedFoldersInDir = |
| 24 | (dir: string): T.Task<string[]> => |
nothing calls this directly
no test coverage detected