(value: any)
| 526 | | DataView; |
| 527 | |
| 528 | export const isRecordLike = (value: any): value is Record<string, string> => |
| 529 | value != null && |
| 530 | typeof value === "object" && |
| 531 | !Array.isArray(value) && |
| 532 | Object.keys(value).length > 0 && |
| 533 | Object.keys(value).every((key) => typeof key === "string" && typeof value[key] === "string"); |
| 534 | |
| 535 | /** |
| 536 | * A subclass of `Promise` providing additional helper methods |
no test coverage detected
searching dependent graphs…