nodeClock.js 193 B

1234567
  1. module.exports = {
  2. //provide realtime clock for performance measurement
  3. now: function now() {
  4. var second = process.hrtime();
  5. return second[0] * 1000 + (second[1] / 1000000);
  6. }
  7. };