(closeWith)
| 2054 | }; |
| 2055 | |
| 2056 | var appendClosingTagOnNewLine = function (closeWith) { |
| 2057 | if ( closeWith === void 0 ) closeWith = '>'; |
| 2058 | |
| 2059 | appendLineBreak(); |
| 2060 | appendIndentation(currentDepth - 1); |
| 2061 | append(closeWith); |
| 2062 | }; |
| 2063 | |
| 2064 | var getAttributeAsString = function (name, value) { |
| 2065 | if (value.length === 0) { |
no test coverage detected
searching dependent graphs…