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>
10 lines
No EOL
379 B
Text
10 lines
No EOL
379 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.from = void 0;
|
|
var scheduled_1 = require("../scheduled/scheduled");
|
|
var innerFrom_1 = require("./innerFrom");
|
|
function from(input, scheduler) {
|
|
return scheduler ? scheduled_1.scheduled(input, scheduler) : innerFrom_1.innerFrom(input);
|
|
}
|
|
exports.from = from;
|
|
//# sourceMappingURL=from.js.map |