feat : add chessCom games import

This commit is contained in:
GuillaumeSD
2024-02-27 03:32:46 +01:00
parent b2b80b1cc1
commit 13a4bc06b6
13 changed files with 270 additions and 30 deletions

7
src/lib/helpers.ts Normal file
View File

@@ -0,0 +1,7 @@
export const getPaddedMonth = (month: number) => {
return month < 10 ? `0${month}` : month;
};
export const capitalize = (s: string) => {
return s.charAt(0).toUpperCase() + s.slice(1);
};