UNPKG
http-metrics
Version:
latest (0.1.0)
0.1.0
The metrics of the HTTP/HTTPS request process
github.com/zyvas/http-metrics
zyvas/http-metrics
http-metrics
/
lib
/
util.js
8 lines
(6 loc)
•
148 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
exports
.
timeToNow
=
function
(
date
) {
let
now =
new
Date
();
let
time = now.
getTime
() - date.
getTime
();
return
(time /
1000
); };