Nostr'a Katılın
2026-07-14 15:54:32 UTC
in reply to

Fox Vector on Nostr: ```ts const maybeUser = { name: null }; if (isUser(maybeUser)) { // TypeScript thinks ...

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