WIP Добавил список записей клиента

This commit is contained in:
DwCay
2023-05-03 19:35:44 +03:00
parent 51440e6def
commit 27ddeacf61
6 changed files with 97 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
export function getChangeMonth(month) {
const changeStr = month.replace(/[ь,й]/g, "");
if (changeStr.slice(-1) === "т") return changeStr + "a";
else return changeStr + "я";
}