From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../node_modules/rxjs/internal/Notification.js | 77 ---------------------- 1 file changed, 77 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/rxjs/internal/Notification.js (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/internal/Notification.js') diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/Notification.js b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/Notification.js deleted file mode 100644 index dc3eeb68..00000000 --- a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/Notification.js +++ /dev/null @@ -1,77 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -var empty_1 = require("./observable/empty"); -var of_1 = require("./observable/of"); -var throwError_1 = require("./observable/throwError"); -var NotificationKind; -(function (NotificationKind) { - NotificationKind["NEXT"] = "N"; - NotificationKind["ERROR"] = "E"; - NotificationKind["COMPLETE"] = "C"; -})(NotificationKind = exports.NotificationKind || (exports.NotificationKind = {})); -var Notification = (function () { - function Notification(kind, value, error) { - this.kind = kind; - this.value = value; - this.error = error; - this.hasValue = kind === 'N'; - } - Notification.prototype.observe = function (observer) { - switch (this.kind) { - case 'N': - return observer.next && observer.next(this.value); - case 'E': - return observer.error && observer.error(this.error); - case 'C': - return observer.complete && observer.complete(); - } - }; - Notification.prototype.do = function (next, error, complete) { - var kind = this.kind; - switch (kind) { - case 'N': - return next && next(this.value); - case 'E': - return error && error(this.error); - case 'C': - return complete && complete(); - } - }; - Notification.prototype.accept = function (nextOrObserver, error, complete) { - if (nextOrObserver && typeof nextOrObserver.next === 'function') { - return this.observe(nextOrObserver); - } - else { - return this.do(nextOrObserver, error, complete); - } - }; - Notification.prototype.toObservable = function () { - var kind = this.kind; - switch (kind) { - case 'N': - return of_1.of(this.value); - case 'E': - return throwError_1.throwError(this.error); - case 'C': - return empty_1.empty(); - } - throw new Error('unexpected notification kind value'); - }; - Notification.createNext = function (value) { - if (typeof value !== 'undefined') { - return new Notification('N', value); - } - return Notification.undefinedValueNotification; - }; - Notification.createError = function (err) { - return new Notification('E', undefined, err); - }; - Notification.createComplete = function () { - return Notification.completeNotification; - }; - Notification.completeNotification = new Notification('C'); - Notification.undefinedValueNotification = new Notification('N', undefined); - return Notification; -}()); -exports.Notification = Notification; -//# sourceMappingURL=Notification.js.map \ No newline at end of file -- cgit v1.2.3