mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-01-03 23:42:28 +03:00
JS: Converted a few extra services to TS
This commit is contained in:
14
resources/js/services/dates.ts
Normal file
14
resources/js/services/dates.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export function getCurrentDay(): string {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
|
||||
return `${date.getFullYear()}-${(month > 9 ? '' : '0') + month}-${(day > 9 ? '' : '0') + day}`;
|
||||
}
|
||||
|
||||
export function utcTimeStampToLocalTime(timestamp: number): string {
|
||||
const date = new Date(timestamp * 1000);
|
||||
const hours = date.getHours();
|
||||
const mins = date.getMinutes();
|
||||
return `${(hours > 9 ? '' : '0') + hours}:${(mins > 9 ? '' : '0') + mins}`;
|
||||
}
|
||||
Reference in New Issue
Block a user