winblows / src /helpers /ratelimit.js
no1b4me's picture
Upload 20 files
07436b8 verified
raw
history blame contribute delete
160 Bytes
const async = require('async');
const queue = async.queue((task, callback) => {
task.fn().then(callback).catch(callback);
}, 45);
module.exports = queue;