chore: removed deprecated types and files

This commit is contained in:
2025-10-06 14:29:06 +02:00
parent 31c241b3b7
commit d762d42344
3 changed files with 2 additions and 388 deletions
-18
View File
@@ -1,18 +0,0 @@
export function currentFormattedDate() {
return (
new Date().toLocaleDateString('pl-PL', {
day: 'numeric',
month: 'numeric',
year: 'numeric'
}) + 'r.'
);
}
export function currentFormattedMinutes() {
const date = new Date();
return (date.getMinutes() < 10 ? '0' : '') + date.getMinutes();
}
export function currentFormattedHours() {
return new Date().toLocaleTimeString('pl-PL', { hour: '2-digit' });
}