mirror of
https://github.com/LukeHagar/idn-admin-console.git
synced 2025-12-08 20:47:44 +00:00
Full Express backend implementation
This commit is contained in:
4
Sveltekit-App/src/lib/Utils.ts
Normal file
4
Sveltekit-App/src/lib/Utils.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export function formatDate(date: string | null | undefined) {
|
||||
if (!date) return 'N/A';
|
||||
return new Date(date).toLocaleString();
|
||||
}
|
||||
Reference in New Issue
Block a user