Hello! I have an error that I always get and cant solve. The error is that when I call any API callbacks I only get ex.: rank TIME_OUT and then the program stops. Anyway to solve this issue?
code:
`const R6 = require('r6s-stats-api');
let platform = 'PC';
let name = 'Kek_Orbit';
async function main() {
let rank = await R6.rank(platform, name);
console.log('rank', rank);
}
main();`
Hello! I have an error that I always get and cant solve. The error is that when I call any API callbacks I only get ex.: rank TIME_OUT and then the program stops. Anyway to solve this issue?
code:
`const R6 = require('r6s-stats-api');
let platform = 'PC';
let name = 'Kek_Orbit';
async function main() {
let rank = await R6.rank(platform, name);
console.log('rank', rank);
}
main();`