This commit is contained in:
Stephen Franceschelli 2019-07-30 13:41:05 -04:00
parent 596a6da241
commit c1a589c5b6
7078 changed files with 1882834 additions and 319 deletions

9
node_modules/browser-process-hrtime/LICENSE generated vendored Normal file
View file

@ -0,0 +1,9 @@
Copyright 2014 kumavis
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

25
node_modules/browser-process-hrtime/README.md generated vendored Normal file
View file

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

28
node_modules/browser-process-hrtime/index.js generated vendored Normal file
View file

@ -0,0 +1,28 @@
module.exports = process.hrtime || hrtime
// polyfil for window.performance.now
var performance = global.performance || {}
var performanceNow =
performance.now ||
performance.mozNow ||
performance.msNow ||
performance.oNow ||
performance.webkitNow ||
function(){ return (new Date()).getTime() }
// generate timestamp or delta
// see http://nodejs.org/api/process.html#process_process_hrtime
function hrtime(previousTimestamp){
var clocktime = performanceNow.call(performance)*1e-3
var seconds = Math.floor(clocktime)
var nanoseconds = Math.floor((clocktime%1)*1e9)
if (previousTimestamp) {
seconds = seconds - previousTimestamp[0]
nanoseconds = nanoseconds - previousTimestamp[1]
if (nanoseconds<0) {
seconds--
nanoseconds += 1e9
}
}
return [seconds,nanoseconds]
}

46
node_modules/browser-process-hrtime/package.json generated vendored Normal file
View file

@ -0,0 +1,46 @@
{
"_from": "browser-process-hrtime@^0.1.2",
"_id": "browser-process-hrtime@0.1.3",
"_inBundle": false,
"_integrity": "sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==",
"_location": "/browser-process-hrtime",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "browser-process-hrtime@^0.1.2",
"name": "browser-process-hrtime",
"escapedName": "browser-process-hrtime",
"rawSpec": "^0.1.2",
"saveSpec": null,
"fetchSpec": "^0.1.2"
},
"_requiredBy": [
"/w3c-hr-time"
],
"_resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz",
"_shasum": "616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4",
"_spec": "browser-process-hrtime@^0.1.2",
"_where": "E:\\github\\setup-java\\node_modules\\w3c-hr-time",
"author": {
"name": "kumavis"
},
"bugs": {
"url": "https://github.com/kumavis/browser-process-hrtime/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Shim for process.hrtime in the browser",
"homepage": "https://github.com/kumavis/browser-process-hrtime#readme",
"license": "BSD-2-Clause",
"main": "index.js",
"name": "browser-process-hrtime",
"repository": {
"type": "git",
"url": "git://github.com/kumavis/browser-process-hrtime.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "0.1.3"
}