Type guard that checks if a value is a non-null, non-array object (e.g. {}, Date, Map, a class instance) — narrowed to Record<string, unknown> for keyed property access.
{}
Date
Map
Record<string, unknown>
The value to check
True if the value is a record, false otherwise
Type guard that checks if a value is a non-null, non-array object (e.g.
{},Date,Map, a class instance) — narrowed toRecord<string, unknown>for keyed property access.