(signal: AbortSignal)
| 128 | } |
| 129 | |
| 130 | async function init(signal: AbortSignal): Promise<void> { |
| 131 | // For `sticky-comment-header` |
| 132 | abortableClassName(document.documentElement, signal, 'rgh-show-names'); |
| 133 | observe(usernameLinksSelector, updateDom, {signal}); |
| 134 | } |
| 135 | |
| 136 | void features.add(import.meta.url, { |
| 137 | include: [ |
nothing calls this directly
no test coverage detected