(n, length)
| 6 | const { formatWithOptions } = require('./format') |
| 7 | |
| 8 | const padZero = (n, length) => n.toString().padStart(length.toString().length, '0') |
| 9 | |
| 10 | class LogFiles { |
| 11 | // Default to an array so we can buffer |
no test coverage detected
searching dependent graphs…