export default class Svg { static makeNode(n, v=null) { n = document.createElementNS("http://www.w3.org/2000/svg", n); if (v) { for (let p in v) { if (v.hasOwnProperty(p)) { n.setAttributeNS(null, p, v[p]); } } } return n } }