(value: number)
| 34 | const MAX_ERROR_LOGS = 20 |
| 35 | |
| 36 | const formatNumber = (value: number): string => value.toLocaleString('en-US') |
| 37 | |
| 38 | const formatProgress = (stats: EventImportStats): string => { |
| 39 | return `[Processed: ${formatNumber(stats.processed)} | Inserted: ${formatNumber(stats.inserted)} | Skipped: ${formatNumber(stats.skipped)} | Errors: ${formatNumber(stats.errors)}]` |
no outgoing calls
no test coverage detected