package/package.json000664 0000000573 3560116604 011555 0ustar00000000 000000 { "name": "browser-process-hrtime", "version": "1.0.0", "description": "Shim for process.hrtime in the browser", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git://github.com/kumavis/browser-process-hrtime.git" }, "author": "kumavis", "license": "BSD-2-Clause" } package/index.d.ts000664 0000000175 3560116604 011166 0ustar00000000 000000 declare module "browser-process-hrtime" { function hrtime(time?: [number, number]): [number, number]; export = hrtime; } package/index.js000664 0000001511 3560116604 010725 0ustar00000000 000000 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] }package/LICENSE000664 0000002354 3560116604 010273 0ustar00000000 000000 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. package/README.md000664 0000001630 3560116604 010541 0ustar00000000 000000 # browser-process-hrtime Browser shim for Node.js `process.hrtime()`. See [documentation at nodejs.org](http://nodejs.org/api/process.html#process_process_hrtime) This module does not provide the same level of time precision as node.js, but provides a matching API and response format. ### usage Use hrtime independent of environment (node or browser). It will use `process.hrtime` first and fallback if not present. ```js const hrtime = require('browser-process-hrtime') const start = hrtime() // ... const delta = hrtime(start) ``` ### monkey-patching You can monkey-patch `process.hrtime` for your dependency graph like this: ```js process.hrtime = require('browser-process-hrtime') const 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.