Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | "use strict";
|
---|
2 | /**
|
---|
3 | * @license
|
---|
4 | * Copyright Google LLC All Rights Reserved.
|
---|
5 | *
|
---|
6 | * Use of this source code is governed by an MIT-style license that can be
|
---|
7 | * found in the LICENSE file at https://angular.io/license
|
---|
8 | */
|
---|
9 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
10 | exports.normalizeOptimization = void 0;
|
---|
11 | function normalizeOptimization(optimization = true) {
|
---|
12 | if (typeof optimization === 'object') {
|
---|
13 | return {
|
---|
14 | scripts: !!optimization.scripts,
|
---|
15 | styles: typeof optimization.styles === 'object'
|
---|
16 | ? optimization.styles
|
---|
17 | : {
|
---|
18 | minify: !!optimization.styles,
|
---|
19 | inlineCritical: !!optimization.styles,
|
---|
20 | },
|
---|
21 | fonts: typeof optimization.fonts === 'object'
|
---|
22 | ? optimization.fonts
|
---|
23 | : {
|
---|
24 | inline: !!optimization.fonts,
|
---|
25 | },
|
---|
26 | };
|
---|
27 | }
|
---|
28 | return {
|
---|
29 | scripts: optimization,
|
---|
30 | styles: {
|
---|
31 | minify: optimization,
|
---|
32 | inlineCritical: optimization,
|
---|
33 | },
|
---|
34 | fonts: {
|
---|
35 | inline: optimization,
|
---|
36 | },
|
---|
37 | };
|
---|
38 | }
|
---|
39 | exports.normalizeOptimization = normalizeOptimization;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.