(value: unknown)
| 34 | } |
| 35 | |
| 36 | function sanitizeEntityTypes(value: unknown): string[] { |
| 37 | return Array.isArray(value) ? value.filter((t): t is string => typeof t === 'string') : [] |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Expand a stored stage policy into its effective form. A stage redacts nothing |
no outgoing calls
no test coverage detected