11 lines
312 B
JavaScript
11 lines
312 B
JavaScript
import { publishBehavior as higherOrder } from '../operators/publishBehavior';
|
|
/**
|
|
* @param value
|
|
* @return {ConnectableObservable<T>}
|
|
* @method publishBehavior
|
|
* @owner Observable
|
|
*/
|
|
export function publishBehavior(value) {
|
|
return higherOrder(value)(this);
|
|
}
|
|
//# sourceMappingURL=publishBehavior.js.map
|