Rocky_Mountain_Vending/.pnpm-store/v10/files/1e/48b400ecbec0a4d1da2527cdc06837e0ac01768601e53ce5a152f37dcf35a5f995544952f362e281d5ff0fc84121df2f084aad12742825594931ba87369971
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
380 B
Text

import { BehaviorSubject } from '../BehaviorSubject';
import { ConnectableObservable } from '../observable/ConnectableObservable';
export function publishBehavior(initialValue) {
return (source) => {
const subject = new BehaviorSubject(initialValue);
return new ConnectableObservable(source, () => subject);
};
}
//# sourceMappingURL=publishBehavior.js.map