sp-dev-fx-webparts/samples/react-calendar/src/utils/dateUtils.ts

10 lines
232 B
TypeScript

import * as moment from 'moment';
export function toLocaleLongDateString(date: Date) {
return moment(date).format('LL');
}
export function toLocaleShortDateString(date: Date) {
return moment(date).format('ll');
}