(value: unknown)
| 6723 | } |
| 6724 | |
| 6725 | function hasNonEmptyString(value: unknown): value is string { |
| 6726 | return typeof value === "string" && value.trim().length > 0; |
| 6727 | } |
| 6728 | |
| 6729 | function hasNoFeishuUserIdentity(metadata: Record<string, unknown>): boolean { |
| 6730 | const rawIdentityFields = [ |
no outgoing calls
no test coverage detected