( container: HTMLElement, links: string[], linkServices: LinkServices )
| 126 | } |
| 127 | |
| 128 | function renderProjectLinksWithoutPrefix( |
| 129 | container: HTMLElement, |
| 130 | links: string[], |
| 131 | linkServices: LinkServices |
| 132 | ): void { |
| 133 | renderProjectLinks(container, links, linkServices); |
| 134 | |
| 135 | Array.from(container.childNodes).forEach((node) => { |
| 136 | if (node.nodeType === Node.TEXT_NODE && node.textContent?.trim() === "+") { |
| 137 | node.remove(); |
| 138 | } |
| 139 | }); |
| 140 | } |
no test coverage detected