Throttling Axios requests
I am using axios library for making API calls. The endpoint to which I am making the API calls has the following restrictions.
var rules = [
{interval: 1, limit: 5},
{interval: 3600, limit: 1000, precision: 100}
];
I am looking for a rate-limi...