object.mjs 261 B

123456789
  1. /**
  2. * @license
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. import { unwrapResourceUrl } from '../../internals/resource_url_impl';
  6. /** Sets the data attribute using a TrustedResourceUrl */
  7. export function setData(obj, v) {
  8. obj.data = unwrapResourceUrl(v);
  9. }