| 12345678910111213 |
- "use strict";
- /**
- * @license
- * SPDX-License-Identifier: Apache-2.0
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.setData = void 0;
- var resource_url_impl_1 = require("../../internals/resource_url_impl");
- /** Sets the data attribute using a TrustedResourceUrl */
- function setData(obj, v) {
- obj.data = (0, resource_url_impl_1.unwrapResourceUrl)(v);
- }
- exports.setData = setData;
|