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

24 lines
No EOL
862 B
Text

import { asyncScheduler } from '../scheduler/async';
import { operate } from '../util/lift';
import { createOperatorSubscriber } from './OperatorSubscriber';
export function timeInterval(scheduler) {
if (scheduler === void 0) { scheduler = asyncScheduler; }
return operate(function (source, subscriber) {
var last = scheduler.now();
source.subscribe(createOperatorSubscriber(subscriber, function (value) {
var now = scheduler.now();
var interval = now - last;
last = now;
subscriber.next(new TimeInterval(value, interval));
}));
});
}
var TimeInterval = (function () {
function TimeInterval(value, interval) {
this.value = value;
this.interval = interval;
}
return TimeInterval;
}());
export { TimeInterval };
//# sourceMappingURL=timeInterval.js.map