(this: any, name: string, value: unknown)
| 139 | return safeCall(() => stringValue(this[name]) || null, null); |
| 140 | }, |
| 141 | setAttribute(this: any, name: string, value: unknown): void { |
| 142 | safeCall(() => { |
| 143 | debugAttributeStore(this).set(name, stringValue(value)); |
| 144 | }, undefined); |
| 145 | }, |
| 146 | removeAttribute(this: any, name: string): void { |
| 147 | safeCall(() => { |
| 148 | debugAttributeStore(this).delete(name); |
nothing calls this directly
no test coverage detected