maybe something to backup mealie data idk
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
305 B

import dayjs from 'dayjs';
const backupTimeDiff = (lastDate) => {
try {
const now = dayjs();
const last = dayjs(lastDate);
const difference = now.diff(last, 'seconds');
return difference;
} catch (error) {
console.error(error);
return null;
}
};
export { backupTimeDiff };