(value: unknown)
| 981 | } |
| 982 | |
| 983 | function asString(value: unknown): string | undefined { |
| 984 | return typeof value === "string" && value.trim() ? value.trim() : undefined; |
| 985 | } |
| 986 | |
| 987 | function readPolicyDecision(requestJson: string): string | undefined { |
| 988 | try { |
no outgoing calls
no test coverage detected