(el, attribute, value)
| 399 | * Value to set the attribute to. |
| 400 | */ |
| 401 | export function setAttribute(el, attribute, value) { |
| 402 | el.setAttribute(attribute, value); |
| 403 | } |
| 404 | |
| 405 | /** |
| 406 | * Remove an element's attribute. |
nothing calls this directly
no test coverage detected
searching dependent graphs…