function getCurrDate()

in src/es-backup-scheduler/index.ts [74:77]


function getCurrDate() {
    const date_ob = new Date();
    return date_ob.getFullYear() + "." + date_ob.getMonth() + "." + date_ob.getDate() + "." + date_ob.getTime();
}