mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
461 B
14 lines
461 B
"use strict";
|
|
var BehaviorSubject_1 = require('../BehaviorSubject');
|
|
var multicast_1 = require('./multicast');
|
|
/**
|
|
* @param value
|
|
* @return {ConnectableObservable<T>}
|
|
* @method publishBehavior
|
|
* @owner Observable
|
|
*/
|
|
function publishBehavior(value) {
|
|
return function (source) { return multicast_1.multicast(new BehaviorSubject_1.BehaviorSubject(value))(source); };
|
|
}
|
|
exports.publishBehavior = publishBehavior;
|
|
//# sourceMappingURL=publishBehavior.js.map
|