db-vendo-client/throttle.js

15 lines
256 B
JavaScript
Raw Normal View History

2018-01-23 15:54:39 +01:00
'use strict'
const throttle = require('p-throttle')
2019-10-31 18:48:11 +01:00
const withThrottling = (profile, limit = 5, interval = 1000) => {
const {request} = profile
2019-10-31 18:48:11 +01:00
return {
...profile,
request: throttle(request, limit, interval)
}
2018-01-23 15:54:39 +01:00
}
module.exports = withThrottling