(item)
| 103 | } |
| 104 | |
| 105 | function buildItemTypeStrings(item) { |
| 106 | var types = []; |
| 107 | |
| 108 | if (item && item.type && item.type.names) { |
| 109 | item.type.names.forEach(function(name) { |
| 110 | types.push( linkto(name, htmlsafe(name)) ); |
| 111 | }); |
| 112 | } |
| 113 | |
| 114 | return types; |
| 115 | } |
| 116 | |
| 117 | function buildAttribsString(attribs) { |
| 118 | var attribsString = ''; |
no outgoing calls
no test coverage detected