browser-process-hrtime
usage
const hrtime = require('browser-process-hrtime')
const start = hrtime()
// ...
const delta = hrtime(start)monkey-patching
process.hrtime = require('browser-process-hrtime')
const coolTool = require('module-that-uses-hrtime-somewhere-in-its-depths')note
Last updated