Theblockbuster1 / disboard-auto-bump

Not against Discord's ToS!
MIT License
73 stars 16 forks source link

Use date timestamp rather than a counter to calculate time remaining #27

Open Theblockbuster1 opened 2 years ago

Theblockbuster1 commented 2 years ago

Example:

      let timer = setInterval(function() {
          var delta = Date.now() - start; // milliseconds elapsed since start
          if (delta >= timeToReach) {
            clearInterval(timer);
          }
      }, 100);