()
| 24 | } |
| 25 | |
| 26 | toDateString() { |
| 27 | // toUTCString returns RFC 7231 ("Mon, 12 Aug 2024 23:36:08 GMT") |
| 28 | const [day, date, month, year] = this.internal.toUTCString().split(" "); |
| 29 | // "Tue Aug 13 2024" |
| 30 | return `${day?.slice(0, -1) /* Remove "," */} ${month} ${date} ${year}`; |
| 31 | } |
| 32 | |
| 33 | toTimeString() { |
| 34 | // toUTCString returns RFC 7231 ("Mon, 12 Aug 2024 23:36:08 GMT") |