(filePath: string)
| 140 | }; |
| 141 | |
| 142 | function getFileSize(filePath: string): number { |
| 143 | const stats = fs.statSync(filePath); |
| 144 | return stats.size; |
| 145 | } |
| 146 | |
| 147 | function getFolderSize(folderPath: string): number { |
| 148 | let totalSize = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected