zimbot-v4
Version:
Multi device wa bot created by Zim Bot Inc.
18 lines (15 loc) • 401 B
JavaScript
const usedCommandRecently = new Set();
const isFiltered = (from) => {
return !!usedCommandRecently.has(from);
};
const addFilter = (from) => {
usedCommandRecently.add(from);
setTimeout(() => {
return usedCommandRecently.delete(from);
}, 1500);// slow commands cmd filtered
};
module.exports = {
msgFilter: {
isFiltered,
addFilter
}};