()
| 4 | } |
| 5 | |
| 6 | function GetTime() { |
| 7 | const currentDate = new Date(); |
| 8 | return `${String(currentDate.getHours()).padStart(2, '0')}:${String(currentDate.getMinutes()).padStart(2, '0')}:${String(currentDate.getSeconds()).padStart(2, '0')}`;; |
| 9 | } |
| 10 | |
| 11 | function GetTimeDate() { |
| 12 | return `${GetDate()}_${GetTime()}`; |
no outgoing calls
no test coverage detected