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>
21 lines
No EOL
733 B
Text
21 lines
No EOL
733 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.using = void 0;
|
|
var Observable_1 = require("../Observable");
|
|
var innerFrom_1 = require("./innerFrom");
|
|
var empty_1 = require("./empty");
|
|
function using(resourceFactory, observableFactory) {
|
|
return new Observable_1.Observable(function (subscriber) {
|
|
var resource = resourceFactory();
|
|
var result = observableFactory(resource);
|
|
var source = result ? innerFrom_1.innerFrom(result) : empty_1.EMPTY;
|
|
source.subscribe(subscriber);
|
|
return function () {
|
|
if (resource) {
|
|
resource.unsubscribe();
|
|
}
|
|
};
|
|
});
|
|
}
|
|
exports.using = using;
|
|
//# sourceMappingURL=using.js.map |