MCPcopy
hub / github.com/date-fns/date-fns / toDateString

Method toDateString

pkgs/tz/src/date/index.js:26–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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")

Callers 2

toStringMethod · 0.95
tests.tsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected