(items = [])
| 52 | } |
| 53 | |
| 54 | function unique(items = []) { |
| 55 | return [...new Set(items.map((item) => String(item || "").trim()).filter(Boolean))]; |
| 56 | } |
| 57 | |
| 58 | function parseUnifiedEnv() { |
| 59 | const raw = process.env[CK_NAME] || ""; |
no outgoing calls
no test coverage detected