📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 10:17:40
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
node_modules
/
rxjs
/
dist
/
esm
/
internal
/
observable
📍 /home/orkouolp/web/testing.orkobd/laravel/node_modules/rxjs/dist/esm/internal/observable
🔄 Refresh
✏️
Editing: using.js
Writable
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
💾 Save Changes
❌ Cancel