mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-17 07:43:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
14
node_modules/rxjs/operators/publishBehavior.js
generated
vendored
Normal file
14
node_modules/rxjs/operators/publishBehavior.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
"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
|
||||
Reference in New Issue
Block a user