(n: Node)
| 211 | } |
| 212 | |
| 213 | export function textContent(n: Node): string | null { |
| 214 | return getUntaintedAccessor('Node', n, 'textContent'); |
| 215 | } |
| 216 | |
| 217 | export function contains(n: Node, other: Node): boolean { |
| 218 | return getUntaintedMethod('Node', n, 'contains')(other); |
nothing calls this directly
no test coverage detected