Fox Vector on Nostr: ```ts const maybeUser = { name: null }; if (isUser(maybeUser)) { // TypeScript thinks ...```tsconst maybeUser = { name: null };if (isUser(maybeUser)) { // TypeScript thinks maybeUser.name is a string maybeUser.name.toUpperCase(); // 💥 Runtime crash}```