(url: string)
| 75 | const y = date.getFullYear(); |
| 76 | const m = String(date.getMonth() + 1).padStart(2, "0"); |
| 77 | const d = String(date.getDate()).padStart(2, "0"); |
| 78 | const h = String(date.getHours()).padStart(2, "0"); |
| 79 | const min = String(date.getMinutes()).padStart(2, "0"); |
| 80 | return `${y}/${m}/${d} ${h}:${min}`; |
| 81 | } |
| 82 |
no outgoing calls
no test coverage detected