sanitization.ts (angular-11.0.1) | : | sanitization.ts (angular-11.0.2) | ||
---|---|---|---|---|
skipping to change at line 12 | skipping to change at line 12 | |||
* @license | * @license | |||
* Copyright Google LLC All Rights Reserved. | * Copyright Google LLC All Rights Reserved. | |||
* | * | |||
* Use of this source code is governed by an MIT-style license that can be | * Use of this source code is governed by an MIT-style license that can be | |||
* found in the LICENSE file at https://angular.io/license | * found in the LICENSE file at https://angular.io/license | |||
*/ | */ | |||
import {getDocument} from '../render3/interfaces/document'; | import {getDocument} from '../render3/interfaces/document'; | |||
import {SANITIZER} from '../render3/interfaces/view'; | import {SANITIZER} from '../render3/interfaces/view'; | |||
import {getLView} from '../render3/state'; | import {getLView} from '../render3/state'; | |||
import {renderStringify} from '../render3/util/misc_utils'; | import {renderStringify} from '../render3/util/stringify_utils'; | |||
import {TrustedHTML, TrustedScript, TrustedScriptURL} from '../util/security/tru sted_type_defs'; | import {TrustedHTML, TrustedScript, TrustedScriptURL} from '../util/security/tru sted_type_defs'; | |||
import {trustedHTMLFromString, trustedScriptFromString, trustedScriptURLFromStri ng} from '../util/security/trusted_types'; | import {trustedHTMLFromString, trustedScriptFromString, trustedScriptURLFromStri ng} from '../util/security/trusted_types'; | |||
import {allowSanitizationBypassAndThrow, BypassType, unwrapSafeValue} from './by pass'; | import {allowSanitizationBypassAndThrow, BypassType, unwrapSafeValue} from './by pass'; | |||
import {_sanitizeHtml as _sanitizeHtml} from './html_sanitizer'; | import {_sanitizeHtml as _sanitizeHtml} from './html_sanitizer'; | |||
import {Sanitizer} from './sanitizer'; | import {Sanitizer} from './sanitizer'; | |||
import {SecurityContext} from './security'; | import {SecurityContext} from './security'; | |||
import {_sanitizeUrl as _sanitizeUrl} from './url_sanitizer'; | import {_sanitizeUrl as _sanitizeUrl} from './url_sanitizer'; | |||
/** | /** | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |