Rocky_Mountain_Vending/.pnpm-store/v10/files/d3/f402ea349238142e1876eb3371de0b222817c0e967f7249b3775d0243814778f4084a3db15c7d75182ef268284aca9b082cb8261bae24db670b26390af4f83
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
402 B
Text

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