(names)
| 20168 | |
| 20169 | /* stringifies names for the html/element output */ |
| 20170 | var stringifyNames = function stringifyNames(names) { |
| 20171 | var str = ''; |
| 20172 | // eslint-disable-next-line guard-for-in |
| 20173 | for (var id in names) { |
| 20174 | str += Object.keys(names[id]).join(' ') + ' '; |
| 20175 | } |
| 20176 | return str.trim(); |
| 20177 | }; |
| 20178 | |
| 20179 | /* clones the nested names dictionary */ |
| 20180 | var cloneNames = function cloneNames(names) { |
no outgoing calls
no test coverage detected