"use strict";// Browserify's process implementation doesn't have hrtime, and this package is small so not much of a burden for// Node.js users.consthrtime=require("browser-process-hrtime");functiontoMS([sec,nanosec]){returnsec*1e3+nanosec/1e6;}module.exports={hrtime,toMS};