()
| 35 | } |
| 36 | |
| 37 | function getConfiguredNamespace() { |
| 38 | const namespace = process.env.COO_NAMESPACE |
| 39 | if (!namespace) return null |
| 40 | const trimmed = namespace.trim() |
| 41 | return trimmed.length > 0 ? trimmed : null |
| 42 | } |
| 43 | |
| 44 | export function checkProtectedNamespace() { |
| 45 | // Homespace is explicitly treated as unprotected. |
no outgoing calls
no test coverage detected