(el, ns, name, value)
| 6674 | } |
| 6675 | } |
| 6676 | function setAttribute(el, ns, name, value) { |
| 6677 | if (ns) el.setAttributeNS(null, name, value); |
| 6678 | else el.setAttribute(name, value); |
| 6679 | } |
| 6680 | function flatten(o) { |
| 6681 | const arr = []; |
| 6682 | for(let prop in o)arr.push(`${decamelize(prop, "-")}:${o[prop]}`); |
no outgoing calls
no test coverage detected