(key: string)
| 18 | const RESERVED_NAMESPACE_PREFIX = 'AD_'; |
| 19 | |
| 20 | function isReservedNamespaceKey(key: string): boolean { |
| 21 | return key.startsWith(RESERVED_NAMESPACE_PREFIX); |
| 22 | } |
| 23 | |
| 24 | function reservedNamespaceError(key: string): AppError { |
| 25 | return new AppError( |
no test coverage detected