(value: any)
| 965 | } |
| 966 | |
| 967 | function isPlainObject(value: any): value is Record<string, any> { |
| 968 | return ( |
| 969 | value !== null && |
| 970 | typeof value === `object` && |
| 971 | !isExpressionLike(value) && |
| 972 | !value.__refProxy |
| 973 | ) |
| 974 | } |
| 975 | |
| 976 | function buildNestedSelect( |
| 977 | obj: any, |
no test coverage detected