(value)
| 90 | } |
| 91 | |
| 92 | function formatLineList(value) { |
| 93 | return Array.isArray(value) ? value.filter(Boolean).join("\n") : ""; |
| 94 | } |
| 95 | |
| 96 | function getListWithDefault(config, defaultConfig, key) { |
| 97 | if (Array.isArray(config?.[key]) && config[key].length > 0) { |
no outgoing calls
no test coverage detected