timed

Simplifies high resolution timing for profiling

Usage no npm install needed!

<script type="module">
  import timed from 'https://cdn.skypack.dev/timed';
</script>

README

======= timed

Simplifies high resolution timing for profiling

Usage exampe:

timed = require('timed');

//Start the timer
timed.reset();

setTimeout(function() {
  //should be about 1000 ms
  console.log('Elapsed: ' + timed.since() + ' ms');  

  t.reset();  //timer starts again now from 0
  setTimeout(function() {
    //This one should be about 1500 ms rounded to 3 decimal places
    console.log('Elapsed: ' + timed.rounded() + 'ms');
  }, 1500);
  

}, 1000);