WIP Сделала отсчет времени

This commit is contained in:
Daria Golova
2023-06-15 16:35:25 +03:00
parent bee74cfec3
commit e224239ff2
3 changed files with 132 additions and 30 deletions

View File

@@ -0,0 +1,3 @@
export function convertTime(str, startIndex, endIndex) {
return parseInt(str?.slice(startIndex, endIndex), 10);
}