I have this simple function that checks if an unknown value looks like a Date
object:
function looksLikeDate(obj: unknown): obj is { year: unknown; month: unknown; day: unknown } {
return (
obj !== null && typeof obj === "object" && "year" in obj && "month" in obj && "day" in obj
);
}
But I get the following error for the "year" in obj
part of the code:
Object is possibly 'null'. (2531)
When I switch obj !== null
and typeof obj === "object"
the error goes away: TS Playground Link
Isn't this strange? Can anybody explain this to me?