File size: 399 Bytes
b916b29 6b8fc2c b916b29 6b8fc2c b916b29 6b8fc2c b916b29 6b8fc2c af3ef26 6b8fc2c 8d2a400 6b8fc2c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import dayjs from 'dayjs';
export function today() {
return formatDate(dayjs());
}
export function lastDay() {
return formatDate(dayjs().subtract(1, 'days'));
}
export function lastWeek() {
return formatDate(dayjs().subtract(1, 'weeks'));
}
export function formatDate(date: any) {
if (!date) {
return '';
}
return dayjs(date).format('DD/MM/YYYY HH:mm:ss');
}
|