(str: unknown)
| 45 | * 定义为有长度的字符串 |
| 46 | */ |
| 47 | export function isValidStr(str: unknown): str is string { |
| 48 | return typeof str == 'string' && str !== ''; |
| 49 | } |
| 50 | |
| 51 | export function isLocalMessageId(str: unknown): boolean { |
| 52 | if (typeof str !== 'string') { |
no outgoing calls
no test coverage detected