-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutils.ts
50 lines (42 loc) · 1.16 KB
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
export const isValidLink = (u:string|null): boolean => {
return u!==null&&u.trim().length>0
}
export const mapRange = (
value: number,
inMin: number,
inMax: number,
outMin: number,
outMax: number
) => {
return ((value - inMin) * (outMax - outMin)) / (inMax - inMin) + outMin;
};
export function formatDate(dateStr: string): string {
const months: string[] = ["January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"];
const date: Date = new Date(dateStr);
if (isNaN(date.getTime())) {
throw new Error("Invalid date format");
}
const day: number = date.getDate();
let suffix: string;
switch (day) {
case 1:
case 21:
case 31:
suffix = 'st';
break;
case 2:
case 22:
suffix = 'nd';
break;
case 3:
case 23:
suffix = 'rd';
break;
default:
suffix = 'th';
}
const month: string = months[date.getMonth()];
const year: number = date.getFullYear();
return `${month} ${day}${suffix}, ${year}`;
}