(attributes, closeWith)
| 2108 | }; |
| 2109 | |
| 2110 | var appendClosingTag = function (attributes, closeWith) { |
| 2111 | if (Object.keys(attributes).length <= 1) { |
| 2112 | appendClosingTagOnSameLine(closeWith); |
| 2113 | |
| 2114 | return; |
| 2115 | } |
| 2116 | appendClosingTagOnNewLine(closeWith); |
| 2117 | }; |
| 2118 | |
| 2119 | var render = function () { |
| 2120 | return elements.join(''); |
no test coverage detected
searching dependent graphs…