-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool-access-data.js
More file actions
75 lines (73 loc) · 1.78 KB
/
Copy pathtool-access-data.js
File metadata and controls
75 lines (73 loc) · 1.78 KB
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
66
67
68
69
70
71
72
73
74
75
var consts = {
'SEVEN_DAYS': 'D',
'THIRTY_DAYS': 'D',
'TWELVE_MONTHS': 'M'
};
var generate = function generate(granularity) {
return [
{
"2000": {
"1420070400000": 424390,
"1420156800000": 202978,
"1420243200000": 519492,
"1420329600000": 693234,
"1420416000000": 121755,
"1420502400000": 41547
}
},
{
"3000": {
"1420070400000": 381522,
"1420156800000": 126550,
"1420243200000": 1230,
"1420329600000": 193934,
"1420416000000": 663782,
"1420502400000": 337066
}
},
{
"13000": {
"1420070400000": 419704,
"1420156800000": 119846,
"1420243200000": 348619,
"1420329600000": 421309,
"1420416000000": 398641,
"1420502400000": 359808
}
},
{
"37000": {
"1420070400000": 247088,
"1420156800000": 275128,
"1420243200000": 286612,
"1420329600000": 77486,
"1420416000000": 6419,
"1420502400000": 783195
}
},
{
"51000": {
"1420070400000": 503802,
"1420156800000": 439438,
"1420243200000": 186430,
"1420329600000": 226156,
"1420416000000": 61089,
"1420502400000": 15323
}
},
{
"33333": {
"1420070400000": 503802,
"1420156800000": 439438,
"1420243200000": 186430,
"1420329600000": 226156,
"1420416000000": 61089,
"1420502400000": 15323
}
}
];
};
module.exports = {
'consts': consts,
'generate': generate
}