(value: unknown)
| 73 | */ |
| 74 | |
| 75 | export const isRecord = (value: unknown): value is Record<string, unknown> => |
| 76 | value !== null && typeof value === "object"; |
| 77 | |
| 78 | export const readString = (obj: unknown, key: string): string => { |
| 79 | if (!isRecord(obj)) { |
no outgoing calls
no test coverage detected