flinker 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/RXPublisher.js +4 -12
- package/dist/esm/RXPublisher.js +4 -12
- package/package.json +1 -1
package/dist/cjs/RXPublisher.js
CHANGED
|
@@ -202,9 +202,7 @@ exports.RXDelayedError = RXDelayedError;
|
|
|
202
202
|
var RXEmitter = /** @class */ (function (_super) {
|
|
203
203
|
__extends(RXEmitter, _super);
|
|
204
204
|
function RXEmitter() {
|
|
205
|
-
var _this = this;
|
|
206
|
-
console.log('new RXEmitter');
|
|
207
|
-
_this = _super.call(this) || this;
|
|
205
|
+
var _this = _super.call(this) || this;
|
|
208
206
|
_this._hasValue = false;
|
|
209
207
|
_this.hasError = false;
|
|
210
208
|
_this._err = undefined;
|
|
@@ -407,9 +405,7 @@ exports.RXOperation = RXOperation;
|
|
|
407
405
|
var RXCombine = /** @class */ (function (_super) {
|
|
408
406
|
__extends(RXCombine, _super);
|
|
409
407
|
function RXCombine(list) {
|
|
410
|
-
var _this = this;
|
|
411
|
-
console.log('new RXCombine');
|
|
412
|
-
_this = _super.call(this) || this;
|
|
408
|
+
var _this = _super.call(this) || this;
|
|
413
409
|
_this._values = [];
|
|
414
410
|
_this._hasError = false;
|
|
415
411
|
_this._err = undefined;
|
|
@@ -464,9 +460,7 @@ exports.RXCombine = RXCombine;
|
|
|
464
460
|
var RXFrom = /** @class */ (function (_super) {
|
|
465
461
|
__extends(RXFrom, _super);
|
|
466
462
|
function RXFrom(list) {
|
|
467
|
-
var _this = this;
|
|
468
|
-
console.log('new RXFrom');
|
|
469
|
-
_this = _super.call(this) || this;
|
|
463
|
+
var _this = _super.call(this) || this;
|
|
470
464
|
_this.values = list;
|
|
471
465
|
_this.sendComplete();
|
|
472
466
|
return _this;
|
|
@@ -487,9 +481,7 @@ exports.RXFrom = RXFrom;
|
|
|
487
481
|
var RXWaitUntilComplete = /** @class */ (function (_super) {
|
|
488
482
|
__extends(RXWaitUntilComplete, _super);
|
|
489
483
|
function RXWaitUntilComplete(list, resultPublisher) {
|
|
490
|
-
var _this = this;
|
|
491
|
-
console.log('new RXSequence');
|
|
492
|
-
_this = _super.call(this) || this;
|
|
484
|
+
var _this = _super.call(this) || this;
|
|
493
485
|
_this._value = undefined;
|
|
494
486
|
_this._hasError = false;
|
|
495
487
|
_this._err = undefined;
|
package/dist/esm/RXPublisher.js
CHANGED
|
@@ -199,9 +199,7 @@ export { RXDelayedError };
|
|
|
199
199
|
var RXEmitter = /** @class */ (function (_super) {
|
|
200
200
|
__extends(RXEmitter, _super);
|
|
201
201
|
function RXEmitter() {
|
|
202
|
-
var _this = this;
|
|
203
|
-
console.log('new RXEmitter');
|
|
204
|
-
_this = _super.call(this) || this;
|
|
202
|
+
var _this = _super.call(this) || this;
|
|
205
203
|
_this._hasValue = false;
|
|
206
204
|
_this.hasError = false;
|
|
207
205
|
_this._err = undefined;
|
|
@@ -404,9 +402,7 @@ export { RXOperation };
|
|
|
404
402
|
var RXCombine = /** @class */ (function (_super) {
|
|
405
403
|
__extends(RXCombine, _super);
|
|
406
404
|
function RXCombine(list) {
|
|
407
|
-
var _this = this;
|
|
408
|
-
console.log('new RXCombine');
|
|
409
|
-
_this = _super.call(this) || this;
|
|
405
|
+
var _this = _super.call(this) || this;
|
|
410
406
|
_this._values = [];
|
|
411
407
|
_this._hasError = false;
|
|
412
408
|
_this._err = undefined;
|
|
@@ -461,9 +457,7 @@ export { RXCombine };
|
|
|
461
457
|
var RXFrom = /** @class */ (function (_super) {
|
|
462
458
|
__extends(RXFrom, _super);
|
|
463
459
|
function RXFrom(list) {
|
|
464
|
-
var _this = this;
|
|
465
|
-
console.log('new RXFrom');
|
|
466
|
-
_this = _super.call(this) || this;
|
|
460
|
+
var _this = _super.call(this) || this;
|
|
467
461
|
_this.values = list;
|
|
468
462
|
_this.sendComplete();
|
|
469
463
|
return _this;
|
|
@@ -484,9 +478,7 @@ export { RXFrom };
|
|
|
484
478
|
var RXWaitUntilComplete = /** @class */ (function (_super) {
|
|
485
479
|
__extends(RXWaitUntilComplete, _super);
|
|
486
480
|
function RXWaitUntilComplete(list, resultPublisher) {
|
|
487
|
-
var _this = this;
|
|
488
|
-
console.log('new RXSequence');
|
|
489
|
-
_this = _super.call(this) || this;
|
|
481
|
+
var _this = _super.call(this) || this;
|
|
490
482
|
_this._value = undefined;
|
|
491
483
|
_this._hasError = false;
|
|
492
484
|
_this._err = undefined;
|