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>
12 lines
No EOL
491 B
Text
12 lines
No EOL
491 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.sampleTime = void 0;
|
|
var async_1 = require("../scheduler/async");
|
|
var sample_1 = require("./sample");
|
|
var interval_1 = require("../observable/interval");
|
|
function sampleTime(period, scheduler) {
|
|
if (scheduler === void 0) { scheduler = async_1.asyncScheduler; }
|
|
return sample_1.sample(interval_1.interval(period, scheduler));
|
|
}
|
|
exports.sampleTime = sampleTime;
|
|
//# sourceMappingURL=sampleTime.js.map |