search for: removeallattribut

Displaying 1 result from an estimated 1 matches for "removeallattribut".

Did you mean: removeallattributes
2023 Mar 09
0
njs-0.7.11
...xml.parse(data); : : doc.$root.to.$attr$b = 'bar2'; : doc.$root.to.setAttribute('c', 'baz'); : delete doc.$root.to.$attr$a; : : console.log(xml.serializeToString(doc.$root.to)) : /* '<to b="bar2" c="baz">Tove</to>' */ : : doc.$root.to.removeAllAttributes(); : doc.$root.from.$text = 'Jani2'; : : console.log(xml.serializeToString(doc)) : /* '<note><to>Tove</to><from>Jani2</from></note>' */ : : doc.$root.to.$tags = [xml.parse(`<a/>`), xml.parse(`<b/>`)]; : doc.$root.to.addChild(xml.pars...