(xml, name, value)
| 9 | const CLOSE_SLASH_ANGLE = '/>'; |
| 10 | |
| 11 | function pushAttribute(xml, name, value) { |
| 12 | xml.push(` ${name}="${utils.xmlEncode(value.toString())}"`); |
| 13 | } |
| 14 | function pushAttributes(xml, attributes) { |
| 15 | if (attributes) { |
| 16 | const tmp = []; |
no test coverage detected
searching dependent graphs…