(items = [])
| 105 | } |
| 106 | |
| 107 | function unique(items = []) { |
| 108 | return [...new Set(items.map((item) => String(item || "").trim()).filter(Boolean))]; |
| 109 | } |
| 110 | |
| 111 | function parseUnifiedEnv() { |
| 112 | const raw = process.env[CK_NAME] || ""; |
no outgoing calls
no test coverage detected