(attribs)
| 124 | } |
| 125 | |
| 126 | function buildAttribsString(attribs) { |
| 127 | let attribsString = ''; |
| 128 | |
| 129 | if (attribs && attribs.length) { |
| 130 | attribsString = htmlsafe( util.format('(%s) ', attribs.join(', ')) ); |
| 131 | } |
| 132 | |
| 133 | return attribsString; |
| 134 | } |
| 135 | |
| 136 | function addNonParamAttributes(items) { |
| 137 | let types = []; |
no test coverage detected
searching dependent graphs…