| 1234567891011121314 |
- /**
- * @license
- * SPDX-License-Identifier: Apache-2.0
- */
- import { unwrapUrlOrSanitize } from '../../builders/url_sanitizer';
- /**
- * Sets the Href attribute from the given Url.
- */
- export function setHref(area, url) {
- const sanitizedUrl = unwrapUrlOrSanitize(url);
- if (sanitizedUrl !== undefined) {
- area.href = sanitizedUrl;
- }
- }
|