(href, classes, children, options)
| 5610 | |
| 5611 | |
| 5612 | const makeAnchor = function makeAnchor(href, classes, children, options) { |
| 5613 | const anchor = new Anchor(href, classes, children, options); |
| 5614 | sizeElementFromChildren(anchor); |
| 5615 | return anchor; |
| 5616 | }; |
| 5617 | /** |
| 5618 | * Makes a document fragment with the given list of children. |
| 5619 | */ |
nothing calls this directly
no test coverage detected