import * as moment from 'moment';

moment.locale('pt-br');
export const formatDefaultDate = (date: number|string|Date) => moment(date).format('l');
