(key: string, scope?: string)
| 9 | } |
| 10 | |
| 11 | export function createStateKey(key: string, scope?: string) { |
| 12 | return scope ? `${scope}_${key}` : key; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Check if an object has a description. Either at the root level or in items. |
no outgoing calls
no test coverage detected