/** * @license * SPDX-License-Identifier: Apache-2.0 */ import { unwrapUrlOrSanitize } from '../../builders/url_sanitizer'; /** * Sets the Src attribute from the given Url. */ export function setSrc(img, url) { const sanitizedUrl = unwrapUrlOrSanitize(url); if (sanitizedUrl !== undefined) { img.src = sanitizedUrl; } }