Skip to content

Instantly share code, notes, and snippets.

@anztrax
Created November 30, 2025 00:20
Show Gist options
  • Select an option

  • Save anztrax/d1cce99a2146852332e2c5838d2ab9a2 to your computer and use it in GitHub Desktop.

Select an option

Save anztrax/d1cce99a2146852332e2c5838d2ab9a2 to your computer and use it in GitHub Desktop.
Simple implementation of First Array in Typesscript
type First<T extends any[]> = T extends [infer P, ...unknown[]] ? P : never;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment