chore: lint

This commit is contained in:
coderaiser 2023-08-07 17:40:25 +03:00
parent 13279299c4
commit 24dcf78be8
16 changed files with 25 additions and 26 deletions

View file

@ -15,7 +15,7 @@ module.exports = (date) => {
const addZero = (a) => {
if (a > 9)
return a;
return `0${a}`;
};