mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
Czyszczenie i restrukturyzacja store'a
This commit is contained in:
@@ -69,7 +69,7 @@ const parseSpawns = (spawnString: string) => {
|
||||
});
|
||||
};
|
||||
|
||||
const getTimestamp = (date: string) => (date ? new Date(date).getTime() : 0);
|
||||
const getTimestamp = (date: string | null) => (date ? new Date(date).getTime() : 0);
|
||||
|
||||
const timestampToString = (timestamp: number) =>
|
||||
new Date(timestamp).toLocaleTimeString("pl-PL", {
|
||||
|
||||
Reference in New Issue
Block a user