(names)
| 20161 | |
| 20162 | /* factory for a names dictionary checking the existance of an ID:name pairing */ |
| 20163 | var hasNameForId = function hasNameForId(names) { |
| 20164 | return function (id, name) { |
| 20165 | return names[id] !== undefined && names[id][name]; |
| 20166 | }; |
| 20167 | }; |
| 20168 | |
| 20169 | /* stringifies names for the html/element output */ |
| 20170 | var stringifyNames = function stringifyNames(names) { |
no outgoing calls
no test coverage detected