-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
51 lines (40 loc) · 1005 Bytes
/
test.js
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
// const score = require('./index');
import Score from "./index.js";
const api = new Score({
version: 'v1',
sport: 'football'
});
// api.statistics(9223864).then(rest => {
// for(var arr of rest.statistics){
// if(arr.period == 'ALL'){
// console.log(arr)
// }
// }
// })
// api.votes('9223864').then(rest => {
// console.log(rest)
// })
// api.getlang(true).then(rest => {
// console.log(rest)
// })
// api.eventCount().then(rest => {
// console.log(rest)
// })
api.scheduledEvents().then(rest => {
console.log(rest)
})
// api.oddsProviders('BR').then(rest => {
// console.log(rest)
// })
// api.config.uniqueTournamentsWeb('BR').then(rest => {
// console.log(rest)
// })
// api.config.uniqueTournamentsFootball('BR').then(rest => {
// console.log(rest)
// })
// api.sport.futebol.trendingTopPlayers().then(rest => {
// console.log(rest)
// })
// api.oddsFeaturedEvents().then(rest => {
// console.log(rest)
// })