You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
920 B

  1. # browser-process-hrtime
  2. Browser shim for Node.js `process.hrtime()`.
  3. See [documentation at nodejs.org](http://nodejs.org/api/process.html#process_process_hrtime)
  4. This module does not provide the same level of time precision as node.js, but provides a matching API and response format.
  5. ### usage
  6. Use hrtime independent of environment (node or browser).
  7. It will use `process.hrtime` first and fallback if not present.
  8. ```js
  9. const hrtime = require('browser-process-hrtime')
  10. const start = hrtime()
  11. // ...
  12. const delta = hrtime(start)
  13. ```
  14. ### monkey-patching
  15. You can monkey-patch `process.hrtime` for your dependency graph like this:
  16. ```js
  17. process.hrtime = require('browser-process-hrtime')
  18. const coolTool = require('module-that-uses-hrtime-somewhere-in-its-depths')
  19. ```
  20. ### note
  21. This was originally pull-requested against [node-process](https://github.com/defunctzombie/node-process),
  22. but they are trying to stay lean.