Files
doneit-web/.angular/cache/14.2.12/babel-webpack/fdd688dcd20d4e5ecd16bc7f882189b2.json
T
Eudes Inácio 53b71ea16f its working
2023-06-30 09:54:21 +01:00

1 line
27 KiB
JSON

{"ast":null,"code":"/**\n * @license Angular v14.3.0\n * (c) 2010-2022 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport { CompilerConfig, ResourceLoader } from '@angular/compiler';\nimport * as i0 from '@angular/core';\nimport { InjectionToken, PACKAGE_ROOT_URL, Compiler, ViewEncapsulation, MissingTranslationStrategy, Injector, isDevMode, createPlatformFactory, platformCore, COMPILER_OPTIONS, CompilerFactory, Injectable, PLATFORM_ID, ɵglobal, Version } from '@angular/core';\nimport { ɵPLATFORM_BROWSER_ID } from '@angular/common';\nimport { ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS } from '@angular/platform-browser';\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nconst ERROR_COLLECTOR_TOKEN = new InjectionToken('ErrorCollector');\n/**\n * A default provider for {@link PACKAGE_ROOT_URL} that maps to '/'.\n */\nconst DEFAULT_PACKAGE_URL_PROVIDER = {\n provide: PACKAGE_ROOT_URL,\n useValue: '/'\n};\nconst COMPILER_PROVIDERS = [{\n provide: Compiler,\n useFactory: () => new Compiler()\n}];\n/**\n * @publicApi\n *\n * @deprecated\n * Ivy JIT mode doesn't require accessing this symbol.\n * See [JIT API changes due to ViewEngine deprecation](guide/deprecations#jit-api-changes) for\n * additional context.\n */\nclass JitCompilerFactory {\n /* @internal */\n constructor(defaultOptions) {\n const compilerOptions = {\n useJit: true,\n defaultEncapsulation: ViewEncapsulation.Emulated,\n missingTranslation: MissingTranslationStrategy.Warning\n };\n this._defaultOptions = [compilerOptions, ...defaultOptions];\n }\n createCompiler(options = []) {\n const opts = _mergeOptions(this._defaultOptions.concat(options));\n const injector = Injector.create([COMPILER_PROVIDERS, {\n provide: CompilerConfig,\n useFactory: () => {\n return new CompilerConfig({\n // let explicit values from the compiler options overwrite options\n // from the app providers\n useJit: opts.useJit,\n jitDevMode: isDevMode(),\n // let explicit values from the compiler options overwrite options\n // from the app providers\n defaultEncapsulation: opts.defaultEncapsulation,\n missingTranslation: opts.missingTranslation,\n preserveWhitespaces: opts.preserveWhitespaces\n });\n },\n deps: []\n }, opts.providers]);\n return injector.get(Compiler);\n }\n}\nfunction _mergeOptions(optionsArr) {\n return {\n useJit: _lastDefined(optionsArr.map(options => options.useJit)),\n defaultEncapsulation: _lastDefined(optionsArr.map(options => options.defaultEncapsulation)),\n providers: _mergeArrays(optionsArr.map(options => options.providers)),\n missingTranslation: _lastDefined(optionsArr.map(options => options.missingTranslation)),\n preserveWhitespaces: _lastDefined(optionsArr.map(options => options.preserveWhitespaces))\n };\n}\nfunction _lastDefined(args) {\n for (let i = args.length - 1; i >= 0; i--) {\n if (args[i] !== undefined) {\n return args[i];\n }\n }\n return undefined;\n}\nfunction _mergeArrays(parts) {\n const result = [];\n parts.forEach(part => part && result.push(...part));\n return result;\n}\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * A platform that included corePlatform and the compiler.\n *\n * @publicApi\n */\nconst platformCoreDynamic = createPlatformFactory(platformCore, 'coreDynamic', [{\n provide: COMPILER_OPTIONS,\n useValue: {},\n multi: true\n}, {\n provide: CompilerFactory,\n useClass: JitCompilerFactory,\n deps: [COMPILER_OPTIONS]\n}]);\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nclass ResourceLoaderImpl extends ResourceLoader {\n get(url) {\n let resolve;\n let reject;\n const promise = new Promise((res, rej) => {\n resolve = res;\n reject = rej;\n });\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url, true);\n xhr.responseType = 'text';\n xhr.onload = function () {\n // responseText is the old-school way of retrieving response (supported by IE8 & 9)\n // response/responseType properties were introduced in ResourceLoader Level2 spec (supported\n // by IE10)\n const response = xhr.response || xhr.responseText;\n // normalize IE9 bug (https://bugs.jquery.com/ticket/1450)\n let status = xhr.status === 1223 ? 204 : xhr.status;\n // fix status code when it is 0 (0 status is undocumented).\n // Occurs when accessing file resources or on Android 4.1 stock browser\n // while retrieving files from application cache.\n if (status === 0) {\n status = response ? 200 : 0;\n }\n if (200 <= status && status <= 300) {\n resolve(response);\n } else {\n reject(`Failed to load ${url}`);\n }\n };\n xhr.onerror = function () {\n reject(`Failed to load ${url}`);\n };\n xhr.send();\n return promise;\n }\n}\nResourceLoaderImpl.ɵfac = /* @__PURE__ */function () {\n let ɵResourceLoaderImpl_BaseFactory;\n return function ResourceLoaderImpl_Factory(t) {\n return (ɵResourceLoaderImpl_BaseFactory || (ɵResourceLoaderImpl_BaseFactory = i0.ɵɵgetInheritedFactory(ResourceLoaderImpl)))(t || ResourceLoaderImpl);\n };\n}();\nResourceLoaderImpl.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ResourceLoaderImpl,\n factory: ResourceLoaderImpl.ɵfac\n});\n(function () {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && i0.ɵsetClassMetadata(ResourceLoaderImpl, [{\n type: Injectable\n }], null, null);\n})();\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * @publicApi\n */\nconst INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS = [ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS, {\n provide: COMPILER_OPTIONS,\n useValue: {\n providers: [{\n provide: ResourceLoader,\n useClass: ResourceLoaderImpl,\n deps: []\n }]\n },\n multi: true\n}, {\n provide: PLATFORM_ID,\n useValue: ɵPLATFORM_BROWSER_ID\n}];\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * An implementation of ResourceLoader that uses a template cache to avoid doing an actual\n * ResourceLoader.\n *\n * The template cache needs to be built and loaded into window.$templateCache\n * via a separate mechanism.\n *\n * @publicApi\n *\n * @deprecated This was previously necessary in some cases to test AOT-compiled components with View\n * Engine, but is no longer since Ivy.\n */\nclass CachedResourceLoader extends ResourceLoader {\n constructor() {\n super();\n this._cache = ɵglobal.$templateCache;\n if (this._cache == null) {\n throw new Error('CachedResourceLoader: Template cache was not found in $templateCache.');\n }\n }\n get(url) {\n if (this._cache.hasOwnProperty(url)) {\n return Promise.resolve(this._cache[url]);\n } else {\n return Promise.reject('CachedResourceLoader: Did not find cached template for ' + url);\n }\n }\n}\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * @publicApi\n */\nconst VERSION = new Version('14.3.0');\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * @publicApi\n *\n * @deprecated This was previously necessary in some cases to test AOT-compiled components with View\n * Engine, but is no longer since Ivy.\n\n */\nconst RESOURCE_CACHE_PROVIDER = [{\n provide: ResourceLoader,\n useClass: CachedResourceLoader,\n deps: []\n}];\n/**\n * @publicApi\n */\nconst platformBrowserDynamic = createPlatformFactory(platformCoreDynamic, 'browserDynamic', INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS);\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n// This file only reexports content of the `src` folder. Keep it that way.\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { JitCompilerFactory, RESOURCE_CACHE_PROVIDER, VERSION, platformBrowserDynamic, INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS as ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS, platformCoreDynamic as ɵplatformCoreDynamic };","map":{"version":3,"names":["CompilerConfig","ResourceLoader","i0","InjectionToken","PACKAGE_ROOT_URL","Compiler","ViewEncapsulation","MissingTranslationStrategy","Injector","isDevMode","createPlatformFactory","platformCore","COMPILER_OPTIONS","CompilerFactory","Injectable","PLATFORM_ID","ɵglobal","Version","ɵPLATFORM_BROWSER_ID","ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS","ERROR_COLLECTOR_TOKEN","DEFAULT_PACKAGE_URL_PROVIDER","provide","useValue","COMPILER_PROVIDERS","useFactory","JitCompilerFactory","constructor","defaultOptions","compilerOptions","useJit","defaultEncapsulation","Emulated","missingTranslation","Warning","_defaultOptions","createCompiler","options","opts","_mergeOptions","concat","injector","create","jitDevMode","preserveWhitespaces","deps","providers","get","optionsArr","_lastDefined","map","_mergeArrays","args","i","length","undefined","parts","result","forEach","part","push","platformCoreDynamic","multi","useClass","ResourceLoaderImpl","url","resolve","reject","promise","Promise","res","rej","xhr","XMLHttpRequest","open","responseType","onload","response","responseText","status","onerror","send","ɵfac","ɵResourceLoaderImpl_BaseFactory","ResourceLoaderImpl_Factory","t","ɵɵgetInheritedFactory","ɵprov","ɵɵdefineInjectable","token","factory","ngDevMode","ɵsetClassMetadata","type","INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS","CachedResourceLoader","_cache","$templateCache","Error","hasOwnProperty","VERSION","RESOURCE_CACHE_PROVIDER","platformBrowserDynamic","ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS","ɵplatformCoreDynamic"],"sources":["C:/Users/eudes.inacio/GabineteDigital/gabinete-digital-fo/node_modules/@angular/platform-browser-dynamic/fesm2020/platform-browser-dynamic.mjs"],"sourcesContent":["/**\n * @license Angular v14.3.0\n * (c) 2010-2022 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport { CompilerConfig, ResourceLoader } from '@angular/compiler';\nimport * as i0 from '@angular/core';\nimport { InjectionToken, PACKAGE_ROOT_URL, Compiler, ViewEncapsulation, MissingTranslationStrategy, Injector, isDevMode, createPlatformFactory, platformCore, COMPILER_OPTIONS, CompilerFactory, Injectable, PLATFORM_ID, ɵglobal, Version } from '@angular/core';\nimport { ɵPLATFORM_BROWSER_ID } from '@angular/common';\nimport { ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS } from '@angular/platform-browser';\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nconst ERROR_COLLECTOR_TOKEN = new InjectionToken('ErrorCollector');\n/**\n * A default provider for {@link PACKAGE_ROOT_URL} that maps to '/'.\n */\nconst DEFAULT_PACKAGE_URL_PROVIDER = {\n provide: PACKAGE_ROOT_URL,\n useValue: '/'\n};\nconst COMPILER_PROVIDERS = [{ provide: Compiler, useFactory: () => new Compiler() }];\n/**\n * @publicApi\n *\n * @deprecated\n * Ivy JIT mode doesn't require accessing this symbol.\n * See [JIT API changes due to ViewEngine deprecation](guide/deprecations#jit-api-changes) for\n * additional context.\n */\nclass JitCompilerFactory {\n /* @internal */\n constructor(defaultOptions) {\n const compilerOptions = {\n useJit: true,\n defaultEncapsulation: ViewEncapsulation.Emulated,\n missingTranslation: MissingTranslationStrategy.Warning,\n };\n this._defaultOptions = [compilerOptions, ...defaultOptions];\n }\n createCompiler(options = []) {\n const opts = _mergeOptions(this._defaultOptions.concat(options));\n const injector = Injector.create([\n COMPILER_PROVIDERS, {\n provide: CompilerConfig,\n useFactory: () => {\n return new CompilerConfig({\n // let explicit values from the compiler options overwrite options\n // from the app providers\n useJit: opts.useJit,\n jitDevMode: isDevMode(),\n // let explicit values from the compiler options overwrite options\n // from the app providers\n defaultEncapsulation: opts.defaultEncapsulation,\n missingTranslation: opts.missingTranslation,\n preserveWhitespaces: opts.preserveWhitespaces,\n });\n },\n deps: []\n },\n opts.providers\n ]);\n return injector.get(Compiler);\n }\n}\nfunction _mergeOptions(optionsArr) {\n return {\n useJit: _lastDefined(optionsArr.map(options => options.useJit)),\n defaultEncapsulation: _lastDefined(optionsArr.map(options => options.defaultEncapsulation)),\n providers: _mergeArrays(optionsArr.map(options => options.providers)),\n missingTranslation: _lastDefined(optionsArr.map(options => options.missingTranslation)),\n preserveWhitespaces: _lastDefined(optionsArr.map(options => options.preserveWhitespaces)),\n };\n}\nfunction _lastDefined(args) {\n for (let i = args.length - 1; i >= 0; i--) {\n if (args[i] !== undefined) {\n return args[i];\n }\n }\n return undefined;\n}\nfunction _mergeArrays(parts) {\n const result = [];\n parts.forEach((part) => part && result.push(...part));\n return result;\n}\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * A platform that included corePlatform and the compiler.\n *\n * @publicApi\n */\nconst platformCoreDynamic = createPlatformFactory(platformCore, 'coreDynamic', [\n { provide: COMPILER_OPTIONS, useValue: {}, multi: true },\n { provide: CompilerFactory, useClass: JitCompilerFactory, deps: [COMPILER_OPTIONS] },\n]);\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nclass ResourceLoaderImpl extends ResourceLoader {\n get(url) {\n let resolve;\n let reject;\n const promise = new Promise((res, rej) => {\n resolve = res;\n reject = rej;\n });\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url, true);\n xhr.responseType = 'text';\n xhr.onload = function () {\n // responseText is the old-school way of retrieving response (supported by IE8 & 9)\n // response/responseType properties were introduced in ResourceLoader Level2 spec (supported\n // by IE10)\n const response = xhr.response || xhr.responseText;\n // normalize IE9 bug (https://bugs.jquery.com/ticket/1450)\n let status = xhr.status === 1223 ? 204 : xhr.status;\n // fix status code when it is 0 (0 status is undocumented).\n // Occurs when accessing file resources or on Android 4.1 stock browser\n // while retrieving files from application cache.\n if (status === 0) {\n status = response ? 200 : 0;\n }\n if (200 <= status && status <= 300) {\n resolve(response);\n }\n else {\n reject(`Failed to load ${url}`);\n }\n };\n xhr.onerror = function () {\n reject(`Failed to load ${url}`);\n };\n xhr.send();\n return promise;\n }\n}\nResourceLoaderImpl.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"14.3.0\", ngImport: i0, type: ResourceLoaderImpl, deps: null, target: i0.ɵɵFactoryTarget.Injectable });\nResourceLoaderImpl.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: \"12.0.0\", version: \"14.3.0\", ngImport: i0, type: ResourceLoaderImpl });\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"14.3.0\", ngImport: i0, type: ResourceLoaderImpl, decorators: [{\n type: Injectable\n }] });\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * @publicApi\n */\nconst INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS = [\n ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS,\n {\n provide: COMPILER_OPTIONS,\n useValue: { providers: [{ provide: ResourceLoader, useClass: ResourceLoaderImpl, deps: [] }] },\n multi: true\n },\n { provide: PLATFORM_ID, useValue: ɵPLATFORM_BROWSER_ID },\n];\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * An implementation of ResourceLoader that uses a template cache to avoid doing an actual\n * ResourceLoader.\n *\n * The template cache needs to be built and loaded into window.$templateCache\n * via a separate mechanism.\n *\n * @publicApi\n *\n * @deprecated This was previously necessary in some cases to test AOT-compiled components with View\n * Engine, but is no longer since Ivy.\n */\nclass CachedResourceLoader extends ResourceLoader {\n constructor() {\n super();\n this._cache = ɵglobal.$templateCache;\n if (this._cache == null) {\n throw new Error('CachedResourceLoader: Template cache was not found in $templateCache.');\n }\n }\n get(url) {\n if (this._cache.hasOwnProperty(url)) {\n return Promise.resolve(this._cache[url]);\n }\n else {\n return Promise.reject('CachedResourceLoader: Did not find cached template for ' + url);\n }\n }\n}\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * @publicApi\n */\nconst VERSION = new Version('14.3.0');\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * @publicApi\n *\n * @deprecated This was previously necessary in some cases to test AOT-compiled components with View\n * Engine, but is no longer since Ivy.\n\n */\nconst RESOURCE_CACHE_PROVIDER = [{ provide: ResourceLoader, useClass: CachedResourceLoader, deps: [] }];\n/**\n * @publicApi\n */\nconst platformBrowserDynamic = createPlatformFactory(platformCoreDynamic, 'browserDynamic', INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS);\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n// This file only reexports content of the `src` folder. Keep it that way.\n\n/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { JitCompilerFactory, RESOURCE_CACHE_PROVIDER, VERSION, platformBrowserDynamic, INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS as ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS, platformCoreDynamic as ɵplatformCoreDynamic };\n"],"mappings":"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"},"metadata":{},"sourceType":"module"}