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>
17 lines
No EOL
576 B
Text
17 lines
No EOL
576 B
Text
import { operate } from '../util/lift';
|
|
import { createOperatorSubscriber } from './OperatorSubscriber';
|
|
export function defaultIfEmpty(defaultValue) {
|
|
return operate((source, subscriber) => {
|
|
let hasValue = false;
|
|
source.subscribe(createOperatorSubscriber(subscriber, (value) => {
|
|
hasValue = true;
|
|
subscriber.next(value);
|
|
}, () => {
|
|
if (!hasValue) {
|
|
subscriber.next(defaultValue);
|
|
}
|
|
subscriber.complete();
|
|
}));
|
|
});
|
|
}
|
|
//# sourceMappingURL=defaultIfEmpty.js.map |