(item)
| 120 | } |
| 121 | |
| 122 | function buildItemTypeStrings(item) { |
| 123 | var types = [] |
| 124 | |
| 125 | if (item && item.type && item.type.names) { |
| 126 | item.type.names.forEach(function(name) { |
| 127 | types.push( linkto(name, htmlsafe(name)) ) |
| 128 | }) |
| 129 | } |
| 130 | |
| 131 | return types |
| 132 | } |
| 133 | |
| 134 | function buildAttribsString(attribs) { |
| 135 | var attribsString = '' |
no outgoing calls
no test coverage detected
searching dependent graphs…