Kargi-Sitesi/.angular/cache/16.2.16/babel-webpack/3f68c40924f74416a0a69b26c9ca06d0c190c478c9bbe4f7308af5c88f61081f.json

1 line
No EOL
7.1 KiB
JSON

{"ast":null,"code":"import { empty } from './observable/empty';\nimport { of } from './observable/of';\nimport { throwError } from './observable/throwError';\nexport var NotificationKind;\n(function (NotificationKind) {\n NotificationKind[\"NEXT\"] = \"N\";\n NotificationKind[\"ERROR\"] = \"E\";\n NotificationKind[\"COMPLETE\"] = \"C\";\n})(NotificationKind || (NotificationKind = {}));\nexport class Notification {\n constructor(kind, value, error) {\n this.kind = kind;\n this.value = value;\n this.error = error;\n this.hasValue = kind === 'N';\n }\n observe(observer) {\n switch (this.kind) {\n case 'N':\n return observer.next && observer.next(this.value);\n case 'E':\n return observer.error && observer.error(this.error);\n case 'C':\n return observer.complete && observer.complete();\n }\n }\n do(next, error, complete) {\n const kind = this.kind;\n switch (kind) {\n case 'N':\n return next && next(this.value);\n case 'E':\n return error && error(this.error);\n case 'C':\n return complete && complete();\n }\n }\n accept(nextOrObserver, error, complete) {\n if (nextOrObserver && typeof nextOrObserver.next === 'function') {\n return this.observe(nextOrObserver);\n } else {\n return this.do(nextOrObserver, error, complete);\n }\n }\n toObservable() {\n const kind = this.kind;\n switch (kind) {\n case 'N':\n return of(this.value);\n case 'E':\n return throwError(this.error);\n case 'C':\n return empty();\n }\n throw new Error('unexpected notification kind value');\n }\n static createNext(value) {\n if (typeof value !== 'undefined') {\n return new Notification('N', value);\n }\n return Notification.undefinedValueNotification;\n }\n static createError(err) {\n return new Notification('E', undefined, err);\n }\n static createComplete() {\n return Notification.completeNotification;\n }\n}\nNotification.completeNotification = new Notification('C');\nNotification.undefinedValueNotification = new Notification('N', undefined);","map":{"version":3,"names":["empty","of","throwError","NotificationKind","Notification","constructor","kind","value","error","hasValue","observe","observer","next","complete","do","accept","nextOrObserver","toObservable","Error","createNext","undefinedValueNotification","createError","err","undefined","createComplete","completeNotification"],"sources":["/home/arctichawk1/Desktop/Projects/Public/Kargi-Sitesi/node_modules/rxjs/_esm2015/internal/Notification.js"],"sourcesContent":["import { empty } from './observable/empty';\nimport { of } from './observable/of';\nimport { throwError } from './observable/throwError';\nexport var NotificationKind;\n(function (NotificationKind) {\n NotificationKind[\"NEXT\"] = \"N\";\n NotificationKind[\"ERROR\"] = \"E\";\n NotificationKind[\"COMPLETE\"] = \"C\";\n})(NotificationKind || (NotificationKind = {}));\nexport class Notification {\n constructor(kind, value, error) {\n this.kind = kind;\n this.value = value;\n this.error = error;\n this.hasValue = kind === 'N';\n }\n observe(observer) {\n switch (this.kind) {\n case 'N':\n return observer.next && observer.next(this.value);\n case 'E':\n return observer.error && observer.error(this.error);\n case 'C':\n return observer.complete && observer.complete();\n }\n }\n do(next, error, complete) {\n const kind = this.kind;\n switch (kind) {\n case 'N':\n return next && next(this.value);\n case 'E':\n return error && error(this.error);\n case 'C':\n return complete && complete();\n }\n }\n accept(nextOrObserver, error, complete) {\n if (nextOrObserver && typeof nextOrObserver.next === 'function') {\n return this.observe(nextOrObserver);\n }\n else {\n return this.do(nextOrObserver, error, complete);\n }\n }\n toObservable() {\n const kind = this.kind;\n switch (kind) {\n case 'N':\n return of(this.value);\n case 'E':\n return throwError(this.error);\n case 'C':\n return empty();\n }\n throw new Error('unexpected notification kind value');\n }\n static createNext(value) {\n if (typeof value !== 'undefined') {\n return new Notification('N', value);\n }\n return Notification.undefinedValueNotification;\n }\n static createError(err) {\n return new Notification('E', undefined, err);\n }\n static createComplete() {\n return Notification.completeNotification;\n }\n}\nNotification.completeNotification = new Notification('C');\nNotification.undefinedValueNotification = new Notification('N', undefined);\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}