UNPKG

zerotwomd

Version:

Multi device wa bot created by Team Zero Two.

19 lines (16 loc) 462 B
// Message Filter / Message Cooldowns const usedCommandRecently = new Set(); const isFiltered = (from) => { return !!usedCommandRecently.has(from); }; const addFilter = (from) => { usedCommandRecently.add(from); setTimeout(() => { return usedCommandRecently.delete(from); }, 1500);// 1.5 sec is delay before processing next command; }; module.exports = { msgFilter: { isFiltered, addFilter }};