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.
puhui-go-web/.angular/cache/17.0.7/vite/deps/chunk-FGESKT7O.js.map

8 lines
2.1 MiB

7 months ago
{
"version": 3,
"sources": ["../../../../../node_modules/@angular/core/fesm2022/primitives/signals.mjs", "../../../../../node_modules/tslib/tslib.es6.mjs", "../../../../../node_modules/rxjs/dist/esm5/internal/util/isFunction.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/arrRemove.js", "../../../../../node_modules/rxjs/dist/esm5/internal/Subscription.js", "../../../../../node_modules/rxjs/dist/esm5/internal/config.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/noop.js", "../../../../../node_modules/rxjs/dist/esm5/internal/NotificationFactories.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/errorContext.js", "../../../../../node_modules/rxjs/dist/esm5/internal/Subscriber.js", "../../../../../node_modules/rxjs/dist/esm5/internal/symbol/observable.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/identity.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/pipe.js", "../../../../../node_modules/rxjs/dist/esm5/internal/Observable.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/lift.js", "../../../../../node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.js", "../../../../../node_modules/rxjs/dist/esm5/internal/operators/refCount.js", "../../../../../node_modules/rxjs/dist/esm5/internal/observable/ConnectableObservable.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/performanceTimestampProvider.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/animationFrameProvider.js", "../../../../../node_modules/rxjs/dist/esm5/internal/observable/dom/animationFrames.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.js", "../../../../../node_modules/rxjs/dist/esm5/internal/Subject.js", "../../../../../node_modules/rxjs/dist/esm5/internal/BehaviorSubject.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.js", "../../../../../node_modules/rxjs/dist/esm5/internal/ReplaySubject.js", "../../../../../node_modules/rxjs/dist/esm5/internal/AsyncSubject.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/Action.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/Immediate.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/immediateProvider.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/AsapAction.js", "../../../../../node_modules/rxjs/dist/esm5/internal/Scheduler.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/AsapScheduler.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/asap.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/async.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/QueueAction.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/QueueScheduler.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/queue.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameAction.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameScheduler.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/animationFrame.js", "../../../../../node_modules/rxjs/dist/esm5/internal/scheduler/VirtualTimeScheduler.js", "../../../../../node_modules/rxjs/dist/esm5/internal/observable/empty.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/isScheduler.js", "../../../../../node_modules/rxjs/dist/esm5/internal/util/args.js", "../../../../../node_modules/rxjs/d
"sourcesContent": ["/**\n * @license Angular v17.0.7\n * (c) 2010-2022 Google LLC. https://angular.io/\n * License: MIT\n */\n\n/**\n * The default equality function used for `signal` and `computed`, which uses referential equality.\n */\nfunction defaultEquals(a, b) {\n return Object.is(a, b);\n}\n\n/**\n * The currently active consumer `ReactiveNode`, if running code in a reactive context.\n *\n * Change this via `setActiveConsumer`.\n */\nlet activeConsumer = null;\nlet inNotificationPhase = false;\n/**\n * Global epoch counter. Incremented whenever a source signal is set.\n */\nlet epoch = 1;\n/**\n * Symbol used to tell `Signal`s apart from other functions.\n *\n * This can be used to auto-unwrap signals in various cases, or to auto-wrap non-signal values.\n */\nconst SIGNAL = /* @__PURE__ */ Symbol('SIGNAL');\nfunction setActiveConsumer(consumer) {\n const prev = activeConsumer;\n activeConsumer = consumer;\n return prev;\n}\nfunction getActiveConsumer() {\n return activeConsumer;\n}\nfunction isInNotificationPhase() {\n return inNotificationPhase;\n}\nfunction isReactive(value) {\n return value[SIGNAL] !== undefined;\n}\nconst REACTIVE_NODE = {\n version: 0,\n lastCleanEpoch: 0,\n dirty: false,\n producerNode: undefined,\n producerLastReadVersion: undefined,\n producerIndexOfThis: undefined,\n nextProducerIndex: 0,\n liveConsumerNode: undefined,\n liveConsumerIndexOfThis: undefined,\n consumerAllowSignalWrites: false,\n consumerIsAlwaysLive: false,\n producerMustRecompute: () => false,\n producerRecomputeValue: () => { },\n consumerMarkedDirty: () => { },\n consumerOnSignalRead: () => { },\n};\n/**\n * Called by implementations when a producer's signal is read.\n */\nfunction producerAccessed(node) {\n if (inNotificationPhase) {\n throw new Error(typeof ngDevMode !== 'undefined' && ngDevMode ?\n `Assertion error: signal read during notification phase` :\n '');\n }\n if (activeConsumer === null) {\n // Accessed outside of a reactive context, so nothing to record.\n return;\n }\n activeConsumer.consumerOnSignalRead(node);\n // This producer is the `idx`th dependency of `activeConsumer`.\n const idx = activeConsumer.nextProducerIndex++;\n assertConsumerNode(activeConsumer);\n if (idx < activeConsumer.producerNode.length && activeConsumer.producerNode[idx] !== node) {\n // There's been a change in producers since the last execution of `activeConsumer`.\n // `activeConsumer.producerNode[idx]` holds a stale dependency which will be be removed and\n // replaced with `this`.\n //\n // If `activeConsumer` isn't live, then this is a no-op, since we can replace the producer in\n // `activeConsumer.producerNode` directly. However, if `activeConsumer` is live, then we need\n // to remove it from the stale producer's `liveConsumer`s.\n if (consumerIsLive(activeConsumer)) {\n const staleProducer = activeConsumer.producerNode[idx];\n producerRemoveLiveConsumerAtIndex(staleProducer, activeConsumer.producerIndexOfThis[idx]);\n // At this point, the only record of `staleProducer` is the reference at\n // `activeConsumer.producerNode[idx]` which will be overwritten below.\n }\n }\n if (activeConsumer.producerNode[idx] !== node) {\n // We're a new dependency of the consumer (at `idx`).\n activeConsumer.producerNode[idx] = node;\n // If the active consumer is live, then add it as a live consumer. If not, then use 0 as a\n // placeholder value.\n activeConsumer.producerIndexOfThis[idx] =\n consumerIsLive(activeConsumer) ? producerAddLiveConsumer(node, activeConsumer, idx) : 0;\n }\n activeConsumer.producerLastReadVersion[idx] = node.version;\n}\n/**\n * Increment the global epoch counter.\n *\n * Called by source producers (that is, not computeds) whenever their values change.\n */\nfunction producerIncrementEpoch() {\n epoch++;\n}\n/*
"mappings": "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
"names": ["computed", "node", "d", "b", "from", "v", "Subscription", "empty", "timeout", "Subscriber", "ConsumerObserver", "SafeSubscriber", "Observable", "observable", "OperatorSubscriber", "err", "ConnectableObservable", "timestamp", "timestamp", "Subject", "observable", "AnonymousSubject", "BehaviorSubject", "ReplaySubject", "last", "AsyncSubject", "Action", "delay", "timeout", "AsyncAction", "delay", "AsapAction", "delay", "Scheduler", "delay", "AsyncScheduler", "AsapScheduler", "QueueAction", "delay", "QueueScheduler", "AnimationFrameAction", "delay", "AnimationFrameScheduler", "VirtualTimeScheduler", "VirtualAction", "delay", "delay", "repeat", "delay", "delay", "iterator", "iterator", "NotificationKind", "Notification", "isArray", "i", "expand", "buffer", "sourceIndex", "remove", "isArray", "count", "first", "count", "buffer", "last", "refCount", "windowTime", "refCount", "count", "_a", "TimeInterval", "interval", "throwError", "throwError", "InjectFlags", "context", "injectorProfiler", "ChangeDetectionStrategy", "ViewEncapsulation", "isInlineTemplate", "LContainerFlags", "throwError", "store", "profiler", "throwError", "count", "isInI18nBlock", "max", "location", "name", "FactoryTarget", "R3TemplateDependencyKind", "ViewEncapsulation", "paramTypes", "paramAnnotations", "queue", "document", "schemas", "throwError", "context", "RendererStyleFlags2", "isComponent", "getInsertInFrontOfRNodeWithI18n", "processI18nInsertBefore", "merge", "SecurityContext", "NodeNavigationStep", "isRootView", "node", "iterator", "index", "item", "map", "record", "first", "context", "isPipe", "queue", "noop", "AfterRenderPhase", "map", "location", "resolved", "throwError", "keyValueArraySet", "_", "count", "repeat", "skip", "from", "context", "ViewContainerRef", "DeferDependenciesLoadingState", "DeferBlockState", "DeferBlockInternalState", "DeferBlockBehavior", "callback", "delay", "timeout", "config", "tNode", "LocaleDataIndex", "plural", "I18nCreateOpCode", "changeMask", "value", "index", "substring", "remove", "inertBodyHelper", "hasBinding", "placeholder", "templateId", "isCloseTemplateTag", "isPromise", "isComponent", "multiFactory", "pipe", "context", "TemplateRef", "throwError", "i", "location", "moduleType", "modules", "importingModule", "proto", "type", "ngModuleDef", "context", "throwError", "instance", "isStandaloneComponent", "timeout", "cb", "using", "isPromise", "MissingTranslationStrategy", "context", "nativeNode", "defaultEquals", "activeConsumer", "SIGNAL", "setActiveConsumer", "activeConsumer", "REACTIVE_NODE", "consumerBeforeComputation", "setActiveConsumer", "consumerAfterComputation", "consumerIsLive", "producerRemoveLiveConsumerAtIndex", "producerRemoveLiveConsumerAtIndex", "assertProducerNode", "assertConsumerNode", "consumerIsLive", "UNSET", "COMPUTING", "ERRORED", "COMPUTED_NODE", "REACTIVE_NODE", "defaultEquals", "consumerBeforeComputation", "consumerAfterComputation", "SIGNAL_NODE", "REACTIVE_NODE", "defaultEquals", "NOOP_CLEANUP_FN", "WATCH_NODE", "REACTIVE_NODE", "image", "config", "i", "context", "console"]
}