(id: any)
| 16 | * @internal please do not use. |
| 17 | */ |
| 18 | export function isValidId(id: any): id is string { |
| 19 | return typeof id === 'string' && !!id.trim().length; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * @internal please do not use. |
no outgoing calls
no test coverage detected