(dateTuple)
| 109 | |
| 110 | /** Date format such as 012019. */ |
| 111 | export function dateTupleToMMDDYY(dateTuple) { |
| 112 | const monthStr = toTwoDigitString(dateTuple[1]); |
| 113 | const dayStr = toTwoDigitString(dateTuple[2]); |
| 114 | const yearStr = `${dateTuple[0]}`.slice(2); |
| 115 | return `${monthStr}${dayStr}${yearStr}`; |
| 116 | } |
| 117 | |
| 118 | /** Date format such as JAN 20 19. */ |
| 119 | export function dateTupleToMMMSpaceDDSpaceYY(dateTuple) { |
nothing calls this directly
no test coverage detected