mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-08-30 17:59:02 +00:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
export type DatabaseDateValue = string | number
|
|
|
|
export function parseDatabaseDate(value: DatabaseDateValue): Date {
|
|
if (typeof value === 'number') {
|
|
const timestamp = Math.abs(value) < 1_000_000_000_000 ? value * 1000 : value
|
|
return new Date(timestamp)
|
|
}
|
|
|
|
return new Date(value.replace(' ', 'T'))
|
|
}
|