Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/85f4e4bd492e72c18ffad146cf4ea430d8e14fa681b59dd2c0727d78f733b41fc3dd21107b60ab61e3c89444c6c250d9f7bb4be79ddc54a6e1b94127af8f06
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

9 lines
No EOL
361 B
Text

import { AsyncSubject } from '../AsyncSubject';
import { ConnectableObservable } from '../observable/ConnectableObservable';
export function publishLast() {
return function (source) {
var subject = new AsyncSubject();
return new ConnectableObservable(source, function () { return subject; });
};
}
//# sourceMappingURL=publishLast.js.map