db-vendo-client/throttle.js
2020-01-05 18:10:09 +01:00

14 lines
256 B
JavaScript

'use strict'
const throttle = require('p-throttle')
const withThrottling = (profile, limit = 5, interval = 1000) => {
const {request} = profile
return {
...profile,
request: throttle(request, limit, interval)
}
}
module.exports = withThrottling