Rocky_Mountain_Vending/.pnpm-store/v10/files/17/472b97ca56c47051bd183b80ec492ac94c570c14fe07494dffab1c9519938c04b3275ed7a481b420822a812e1f81f04ef26921dc772144f7efbda8cf133e46
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

17 lines
508 B
Text

export const hrtime = /*@__PURE__*/ Object.assign(function hrtime(startTime) {
const now = Date.now();
const seconds = Math.trunc(now / 1e3);
const nanos = now % 1e3 * 1e6;
if (startTime) {
let diffSeconds = seconds - startTime[0];
let diffNanos = nanos - startTime[0];
if (diffNanos < 0) {
diffSeconds = diffSeconds - 1;
diffNanos = 1e9 + diffNanos;
}
return [diffSeconds, diffNanos];
}
return [seconds, nanos];
}, { bigint: function bigint() {
return BigInt(Date.now() * 1e6);
} });