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.
13 lines
462 B
13 lines
462 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var multicast_1 = require("./multicast");
|
|
var refCount_1 = require("./refCount");
|
|
var Subject_1 = require("../Subject");
|
|
function shareSubjectFactory() {
|
|
return new Subject_1.Subject();
|
|
}
|
|
function share() {
|
|
return function (source) { return refCount_1.refCount()(multicast_1.multicast(shareSubjectFactory)(source)); };
|
|
}
|
|
exports.share = share;
|
|
//# sourceMappingURL=share.js.map
|