Rocky_Mountain_Vending/.pnpm-store/v10/files/ce/cb803a3cb5f0771ce40a4dc283374329cbdbb1210c8bc88c8109fddf7a6fbdec4623aecdf05dd8d35e05f6d3625098ed092b60b48d025bdcc7c24f3cb710e5
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

11 lines
246 B
Text

import {Timer} from "./timer.js";
export default function(callback, delay, time) {
var t = new Timer;
delay = delay == null ? 0 : +delay;
t.restart(elapsed => {
t.stop();
callback(elapsed + delay);
}, delay, time);
return t;
}