-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathmrdkkey.js
More file actions
65 lines (64 loc) · 678 Bytes
/
mrdkkey.js
File metadata and controls
65 lines (64 loc) · 678 Bytes
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const dateCode = [
"s9ZS",
"jQkB",
"RuQM",
"O0_L",
"Buxf",
"LepV",
"Ec6w",
"zPLD",
"eZry",
"QjBF",
"XPB0",
"zlTr",
"YDr2",
"Mfdu",
"HSoi",
"frhT",
"GOdB",
"AEN0",
"zX0T",
"wJg1",
"fCmn",
"SM3z",
"2U5I",
"LI3u",
"3rAY",
"aoa4",
"Jf9u",
"M69T",
"XCea",
"63gc",
"6_Kf"
];
const hourCode = [
"89KC",
"pzTS",
"wgte",
"29_3",
"GpdG",
"FDYl",
"vsE9",
"SPJk",
"_buC",
"GPHN",
"OKax",
"_Kk4",
"hYxa",
"1BC5",
"oBk_",
"JgUW",
"0CPR",
"jlEh",
"gBGg",
"frS6",
"4ads",
"Iwfk",
"TCgR",
"wbjP"
];
module.exports = {
getMrdkKey(d, h) {
return dateCode[d] + hourCode[h];
}
};