-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
102 lines (92 loc) · 1.58 KB
/
test.js
File metadata and controls
102 lines (92 loc) · 1.58 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
const ArilyQuery = require("./index");
let aq = new ArilyQuery();
/*
async function test() {
let user = await aq.stat({
user: "candy",
//mode: "osu",
server: "bancho"
});
console.log(user);
}
test();
*/
/*
async function test() {
let recent = await aq.recent({
user: "exmisser",
mode: "mania",
server: "sb"
});
console.log(recent);
}
test();
*/
/*
async function test() {
let best = await aq.best({
user: "exmisser",
mode: "mania",
server: "sb"
}, "min", 15);
console.log(best);
}
test();
*/
/*
async function test() {
try {
let best = await aq.best({
user: "candy",
mode: "osu",
find: {
date: {
from: { year: 2020, month: 4, day: 3 },
to: { year: 2022, month: 4, day: 3 },
}
}
});
console.log(best);
}
catch (ex) {
console.error(ex)
}
}
test();
*/
/*
async function test() {
try {
let best = await aq.beststat({
user: "whitecat",
mode: "osu",
});
console.log(best);
}
catch (ex) {
console.error(ex)
}
}
test();
*/
/*
async function test() {
let score = await aq.score({
id: "3539986417",
mode: "osu",
});
console.log(score);
}
test();
*/
async function test() {
let beststat = await aq.best({
user: "candy",
mode: "osu",
find: {
id: 1,
},
});
console.log(beststat);
}
test();