()
| 50 | return `Return Value: ${valueString}`; |
| 51 | } |
| 52 | export function getTimeForLogging(): string { |
| 53 | const date = new Date(); |
| 54 | const hours = String(date.getHours()).padStart(2, '0'); |
| 55 | const minutes = String(date.getMinutes()).padStart(2, '0'); |
| 56 | const seconds = String(date.getSeconds()).padStart(2, '0'); |
| 57 | const millis = String(date.getMilliseconds()).padStart(3, '0'); |
| 58 | return `${hours}:${minutes}:${seconds}.${millis}`; |
| 59 | } |
no outgoing calls
no test coverage detected