UNPKG

bunyan-debug

Version:

Bunyan powered logger with namespaces

16 lines (11 loc) 206 B
'use strict'; class Timer { constructor() { this.start = new Date().getTime(); } elapsedTime() { let end = new Date().getTime(); return end - this.start; } } module.exports = Timer;