(name: string, value: string = '')
| 191 | } |
| 192 | |
| 193 | addAttribute(name: string, value: string = '') { |
| 194 | this.attrs.push(name, (value && value.toLowerCase()) || ''); |
| 195 | } |
| 196 | |
| 197 | addClassName(name: string) { |
| 198 | this.classNames.push(name.toLowerCase()); |
no test coverage detected