This repository has been archived on 2026-06-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flights_web_raw/node_modules/rxjs-compat/_esm2015/observable/ScalarObservable.js
T

7 lines
252 B
JavaScript

import { Observable, of } from 'rxjs';
export class ScalarObservable extends Observable {
static create(value, scheduler) {
return arguments.length > 1 ? of(value, scheduler) : of(value);
}
}
//# sourceMappingURL=ScalarObservable.js.map