(value: unknown, key: string)
| 13 | const loggedCause = (cause: Cause.Cause<unknown>): string => truncate(Cause.pretty(cause)); |
| 14 | |
| 15 | const objectValue = (value: unknown, key: string): unknown => |
| 16 | Predicate.hasProperty(value, key) ? value[key] : undefined; |
| 17 | |
| 18 | const numberValue = (value: unknown, key: string): number | undefined => { |
| 19 | const field = objectValue(value, key); |
no outgoing calls
no test coverage detected