(value: string | undefined)
| 54 | `${context.surface}/${context.action}`; |
| 55 | |
| 56 | const hasText = (value: string | undefined): value is string => |
| 57 | typeof value === "string" && value.trim().length > 0; |
| 58 | |
| 59 | /** The best sentence available for a value that carries no usable message. */ |
| 60 | const describeUnknown = (value: unknown, context: FrontendErrorContext): string => |
no outgoing calls
no test coverage detected