(date: Date | undefined)
| 21 | }; |
| 22 | |
| 23 | export const humanizeDate = (date: Date | undefined) => { |
| 24 | return humanizeTs(Math.floor((date?.getTime() ?? 0) / 1000)); |
| 25 | }; |
| 26 | |
| 27 | // The list of supported encodings. |
| 28 | // Reference: https://developer.mozilla.org/en-US/docs/Web/API/Encoding_API/Encodings |
nothing calls this directly
no test coverage detected