diff options
author | Ansh <anshnanda10@gmail.com> | 2023-06-08 09:32:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-08 11:32:56 -0500 |
commit | b3e78017963934d32539c884d435a37aa1447974 (patch) | |
tree | b564448d5d160573226ff95989357a934d054437 /src/lib/strings/time.ts | |
parent | 007d12e18248bf48e22454e23c74404bb797d499 (diff) | |
download | voidsky-b3e78017963934d32539c884d435a37aa1447974.tar.zst |
Diffstat (limited to 'src/lib/strings/time.ts')
-rw-r--r-- | src/lib/strings/time.ts | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/lib/strings/time.ts b/src/lib/strings/time.ts index 3f2847558..588b84459 100644 --- a/src/lib/strings/time.ts +++ b/src/lib/strings/time.ts @@ -1,8 +1,8 @@ const MINUTE = 60 const HOUR = MINUTE * 60 const DAY = HOUR * 24 -const WEEK = DAY * 7 - +const MONTH = DAY * 28 +const YEAR = DAY * 365 export function ago(date: number | string | Date): string { let ts: number if (typeof date === 'string') { @@ -19,14 +19,12 @@ export function ago(date: number | string | Date): string { return `${Math.floor(diffSeconds / MINUTE)}m` } else if (diffSeconds < DAY) { return `${Math.floor(diffSeconds / HOUR)}h` - } else if (diffSeconds < WEEK) { + } else if (diffSeconds < MONTH) { return `${Math.floor(diffSeconds / DAY)}d` + } else if (diffSeconds < YEAR) { + return `${Math.floor(diffSeconds / MONTH)}mo` } else { - return new Date(ts).toLocaleDateString('en-us', { - year: 'numeric', - month: 'short', - day: 'numeric', - }) + return new Date(ts).toLocaleDateString() } } |