(item)
| 112 | } |
| 113 | |
| 114 | function buildItemTypeStrings(item) { |
| 115 | const types = []; |
| 116 | |
| 117 | if (item && item.type && item.type.names) { |
| 118 | item.type.names.forEach(name => { |
| 119 | types.push( linkto(name, htmlsafe(name)) ); |
| 120 | }); |
| 121 | } |
| 122 | |
| 123 | return types; |
| 124 | } |
| 125 | |
| 126 | function buildAttribsString(attribs) { |
| 127 | let attribsString = ''; |
no test coverage detected
searching dependent graphs…