sim-timer

Discrete timer for simulations

Usage no npm install needed!

<script type="module">
  import simTimer from 'https://cdn.skypack.dev/sim-timer';
</script>

README

sim-timer.js

Discrete timer for simulations.

Installation

npm install sim-timer

Methods

var t = new Timer;

Singleton constructor for Timer.

Returns either new instance or existing instance of Timer.

t.tick();

Advance time by 1 unit, and call appropriate intervals.

Returns the new time.

t.setInterval(delay, callback);

Add a new interval to the timer. Opposed the the default Javascript setInterval, this takes the delay first and then the callback.

delay time delay between calls.
callback function to be called at appropriate tick.

Returns id of the interval. This is used the clear the interval.

t.clearInterval(id);

Removes the interval from the timer.

id of the interval

Returns Timer for chaining.