github-pages-deploy-action/node_modules/browser-process-hrtime/README.md

26 lines
782 B
Markdown
Raw Normal View History

2020-03-31 20:42:07 +08:00
# browser-process-hrtime
2020-03-31 20:57:48 +08:00
Browser shim for Node.js process.hrtime().
2020-03-31 20:42:07 +08:00
See [documentation at nodejs.org](http://nodejs.org/api/process.html#process_process_hrtime)
### usage
2020-03-31 20:57:48 +08:00
Use hrtime independant of environment (node or browser).
It will use process.hrtime first and fallback if not present.
2020-03-31 20:42:07 +08:00
```js
2020-03-31 20:57:48 +08:00
var hrtime = require('browser-process-hrtime')
var start = hrtime()
2020-03-31 20:42:07 +08:00
// ...
2020-03-31 20:57:48 +08:00
var delta = hrtime(start)
2020-03-31 20:42:07 +08:00
```
### monkey-patching
2020-03-31 20:57:48 +08:00
You can monkey-patch process.hrtime for your dependency graph like this:
2020-03-31 20:42:07 +08:00
```js
process.hrtime = require('browser-process-hrtime')
2020-03-31 20:57:48 +08:00
var coolTool = require('module-that-uses-hrtime-somewhere-in-its-depths')
2020-03-31 20:42:07 +08:00
```
### note
This was originally pull-requested against [node-process](https://github.com/defunctzombie/node-process),
but they are trying to stay lean.