(trustedUrl: string)
| 183 | * @returns a `url` which has been branded to be implicitly trusted. |
| 184 | */ |
| 185 | export function bypassSanitizationTrustUrl(trustedUrl: string): SafeUrl { |
| 186 | return new SafeUrlImpl(trustedUrl); |
| 187 | } |
| 188 | /** |
| 189 | * Mark `url` string as trusted. |
| 190 | * |
no outgoing calls
no test coverage detected