(date: Date)
| 18 | path.join(EPICSHOP_CONTEXT_CWD, ...paths) |
| 19 | |
| 20 | const formatDate = (date: Date) => |
| 21 | `${date.getHours()}:${String(date.getMinutes()).padStart(2, '0')} ${String( |
| 22 | date.getSeconds(), |
| 23 | ).padStart(2, '0')}.${String(date.getMilliseconds()).padStart(3, '0')}` |
| 24 | |
| 25 | function getDelay(request: Request) { |
| 26 | return Number( |
no outgoing calls
no test coverage detected