(value: unknown)
| 1500 | }; |
| 1501 | |
| 1502 | const isReadonlyRecord = (value: unknown): value is Readonly<Record<PropertyKey, unknown>> => |
| 1503 | typeof value === "object" && value !== null; |
| 1504 | |
| 1505 | type StandardJsonSchemaSide = "input" | "output"; |
| 1506 | type StandardJsonSchemaFns = { |
no outgoing calls
no test coverage detected