Comment by ivanjermakov

6 hours ago

Language is not mentioned in a title, so my first thought was about TypeScript type wizardry. Turns out it's as simple as `Exclude<string, "">`.

https://www.typescriptlang.org/docs/handbook/utility-types.h...

Edit: nevermind, LLM fooled me.

It is very much mentioned in the article title and the first sentence. It's just HN that's truncated the title.

Daily reminder that TypeScript's type checker is not sound.

https://www.typescriptlang.org/play/?#code/C4TwDgpgBAcg9gOwK...

  • Daily reminder that the unsoundness in Typescript's type checker is a practical compromise applied to a language that was never designed to be type checked in this way, and furthermore that many developers feel that it strikes a good balance between formal correctness and practical usability.

  • This example is not only wrong for what you intend to demonstrate but even if it wasn't, it's not problematic. In typescript the proper way to do this is using branded types and exporting only the safe constructor, making anyone who wants to violate the invariant go out of their way, which is no different from the situation in any number of programming languages or scenarios.

      declare const brand: unique symbol;
      type NonEmptyString = string & { readonly [brand]: 'NonEmptyString' };
    
      // the ONLY non-cast way to produce one
      export function nonEmptyString(s: string): NonEmptyString | undefined {
        return s.length > 0 ? (s as NonEmptyString) : undefined;
      }
    
      export type { NonEmptyString };