UNPKG

hydrate-mongodb

Version:
8 lines (7 loc) 231 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function getDuration(start) { var stop = process.hrtime(start); return (stop[0] * 1000) + stop[1] / 1000000; } exports.getDuration = getDuration;