(title: string)
| 29 | } |
| 30 | |
| 31 | function logSection(title: string) { |
| 32 | console.log('\n' + '='.repeat(60)); |
| 33 | log(title, colors.bright + colors.cyan); |
| 34 | console.log('='.repeat(60)); |
| 35 | } |
| 36 | |
| 37 | function formatBytes(bytes: number): string { |
| 38 | if (bytes < 1024) return bytes + ' B'; |
no test coverage detected