This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/health-check/src/utils.js

9 lines
225 B
JavaScript
Raw Normal View History

2020-09-09 12:25:00 +00:00
// return the time between start and now in milliseconds
function getTimeDiff(start) {
const diff = process.hrtime(start);
return Math.round((diff[0] * 1e9 + diff[1]) / 1e6); // msec
}
module.exports = { getTimeDiff };