This repository has been archived on 2026-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
todo/node_modules/rxjs/dist/esm/internal/observable/using.js
2025-06-13 14:04:40 +08:00

17 lines
574 B
JavaScript

import { Observable } from '../Observable';
import { innerFrom } from './innerFrom';
import { EMPTY } from './empty';
export function using(resourceFactory, observableFactory) {
return new Observable((subscriber) => {
const resource = resourceFactory();
const result = observableFactory(resource);
const source = result ? innerFrom(result) : EMPTY;
source.subscribe(subscriber);
return () => {
if (resource) {
resource.unsubscribe();
}
};
});
}
//# sourceMappingURL=using.js.map