MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / stringifyNames

Function stringifyNames

code/styling/public/app.js:20170–20177  ·  view source on GitHub ↗
(names)

Source from the content-addressed store, hash-verified

20168
20169/* stringifies names for the html/element output */
20170var 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 */
20180var cloneNames = function cloneNames(names) {

Callers 2

wrapAsHtmlTagFunction · 0.85
wrapAsElementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected