UNPKG

discord-giveaways-s

Version:

Advanced module for creating and managing giveaways in Discord bots.

12 lines (9 loc) 218 B
export function Scheduler(timestamp, callback) { const now = Date.now(); const delay = timestamp - now; if (delay <= 0) { callback(); return null; } return setTimeout(callback, delay); }