check ratelimit discord js

Solutions on MaxInterview for check ratelimit discord js by the best coders in the world

showing results for - "check ratelimit discord js"
Marcelle
29 Oct 2019
1<client>.on('rateLimit', (info) => {
2  console.log(`Rate limit hit ${info.timeDifference ? info.timeDifference : info.timeout ? info.timeout: 'Unknown timeout '}`)
3})