Files
feishin/server/lib/throttle.ts
T
2022-10-25 16:52:45 -07:00

9 lines
127 B
TypeScript

import pThrottle from 'p-throttle';
const throttle = pThrottle({
interval: 1000,
limit: 10,
});
export default throttle;