(cont, k, item)
| 24 | var getComponentMethod = Registry.getComponentMethod; |
| 25 | |
| 26 | function appendList(cont, k, item) { |
| 27 | if(Array.isArray(cont[k])) cont[k].push(item); |
| 28 | else cont[k] = [item]; |
| 29 | } |
| 30 | |
| 31 | module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, fullData) { |
| 32 | var autotypenumbersDflt = layoutOut.autotypenumbers; |
no outgoing calls
no test coverage detected
searching dependent graphs…