export function ensureDAttribute()

in src/manipulation.ts [126:130]


export function ensureDAttribute(pathElement: Element) {
    if (!pathElement.getAttribute("d")) {
        pathElement.setAttribute("d", "");
    }
}