very simple stopwatch class for logging purposes
'use strict';
var
StopWatch = require('moorea-stopwatch');
var stopWatch = new StopWatch();
// DoSomething(TM)
var elapsed = stopWatch.elapsed();
console.log('elapsed time: ' + elapsed + ' ms');
start()
restart the stopWatch
elapsed()
return elapsed time in milliseconds