Every new change
This commit is contained in:
22
node_modules/rxjs/_esm2015/internal/operators/mapTo.js
generated
vendored
Normal file
22
node_modules/rxjs/_esm2015/internal/operators/mapTo.js
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
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
|
Reference in New Issue
Block a user