(key: string, value: string)
| 22 | } |
| 23 | |
| 24 | set(key: string, value: string): string | null { |
| 25 | const name = this.getAttributeNameForKey(key) |
| 26 | this.element.setAttribute(name, value) |
| 27 | return this.get(key) |
| 28 | } |
| 29 | |
| 30 | has(key: string): boolean { |
| 31 | const name = this.getAttributeNameForKey(key) |
no test coverage detected