dapoadedire / astro-pic-of-the-day

Variable used before definition JS-0129
Bug risk
Major
1 occurrence in this check
'changeDateFormat' was used before it was defined
 3  const day = date.getDate();
 4  const month = date.getMonth() + 1;
 5  const year = date.getFullYear();
 6  return changeDateFormat(`${day}/${month}/${year}`); 7};
 8
 9