(str: string, length: number)
| 246 | const start = process.hrtime.bigint(); |
| 247 | let last = start; |
| 248 | function pad(str: string, length: number) { |
| 249 | while (str.length < length) |
| 250 | str = "0" + str; |
| 251 | return str; |
| 252 | } |
| 253 | export const logTime = (taskFinished?: string) => { |
| 254 | if (!shouldLogTimings) |
| 255 | return; |
no outgoing calls
no test coverage detected