source: trip-planner-front/node_modules/rxjs/_esm5/internal/operators/publishBehavior.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 341 bytes
Line 
1/** PURE_IMPORTS_START _BehaviorSubject,_multicast PURE_IMPORTS_END */
2import { BehaviorSubject } from '../BehaviorSubject';
3import { multicast } from './multicast';
4export function publishBehavior(value) {
5 return function (source) { return multicast(new BehaviorSubject(value))(source); };
6}
7//# sourceMappingURL=publishBehavior.js.map
Note: See TracBrowser for help on using the repository browser.