UNPKG

@aurelia-toolkit/mdc-datepicker

Version:

Aurelia Toolkit MDC Datepicker

19 lines 515 B
import { format } from 'date-fns/format'; export class DateValueConverter { // eslint-disable-next-line no-undef toView(value, formatStr, locale) { if (!value) { return ''; } if (typeof value === 'string') { value = new Date(Date.parse(value)); } if (formatStr) { return format(value, formatStr, { locale }); } else { return value.toLocaleDateString(); } } } //# sourceMappingURL=date.js.map