(source, target)
| 475 | } |
| 476 | |
| 477 | function copyAttributes(source, target) { |
| 478 | return Array.from(source.attributes).forEach((attribute) => { |
| 479 | if (attribute.nodeName !== 'href' && attribute.nodeName !== 'media') |
| 480 | target.setAttribute(attribute.nodeName, attribute.nodeValue); |
| 481 | }); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | async _createTemplatedLink() { |
nothing calls this directly
no test coverage detected