A basic stop watch timing object for JavaScript.
stable
npm install stoptime
edge
npm install https://github.com/daxxog/stoptime/tarball/master
(function() {
var watch = stoptime();
setTimeout(function() {
console.log(watch.elapsed());
}, 100);
setTimeout(function() {
console.log(watch.reset().elapsed());
}, 200);
setTimeout(function() {
console.log(watch.elapsed());
}, 300);
})();