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.
 

21 lines
511 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;
}
};
const backupsToDelete = (backupArray) => {
// get the list of backups to delete and return only the names
if (!backupArray) return [];
return backupArray.map(({ name }) => name);
};
export { backupTimeDiff, backupsToDelete };