frontend/.pnpm-store/v3/files/53/0e0837ebca77824253f6b6d109aa62a1ee7c4b87c7e1374cadcd423c7746aaa8ec6be34331cc682380cb355e5327edafe1889b397da5c679a8b5e467956151

22 lines
579 B
Plaintext

import { Subscriber } from '../Subscriber';
export function mapTo(value) {
return (source) => source.lift(new MapToOperator(value));
}
class MapToOperator {
constructor(value) {
this.value = value;
}
call(subscriber, source) {
return source.subscribe(new MapToSubscriber(subscriber, this.value));
}
}
class MapToSubscriber extends Subscriber {
constructor(destination, value) {
super(destination);
this.value = value;
}
_next(x) {
this.destination.next(this.value);
}
}
//# sourceMappingURL=mapTo.js.map