(date, currentFormat)
| 5 | import { DISPLAY_FORMAT } from '../constants'; |
| 6 | |
| 7 | export default function toLocalizedDateString(date, currentFormat) { |
| 8 | const dateObj = moment.isMoment(date) ? date : toMomentObject(date, currentFormat); |
| 9 | if (!dateObj) return null; |
| 10 | |
| 11 | return dateObj.format(DISPLAY_FORMAT); |
| 12 | } |
no test coverage detected
searching dependent graphs…