Rocky_Mountain_Vending/.pnpm-store/v10/files/3f/befa5ec83b9f207fa79b25196c5a5f2708abe585a9987eea799510c7ab020682e26f18f2e787352a655e839e542c887d8d07c8281510eef1b4a506e43f4445
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

18 lines
No EOL
359 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _default;
var _timer = require("./timer.js");
function _default(callback, delay, time) {
var t = new _timer.Timer();
delay = delay == null ? 0 : +delay;
t.restart(elapsed => {
t.stop();
callback(elapsed + delay);
}, delay, time);
return t;
}