Skip to content

Instantly share code, notes, and snippets.

@forivall
Created March 14, 2025 02:42
Show Gist options
  • Save forivall/7cb1224adfab12d7dfbf9fcf2b78df03 to your computer and use it in GitHub Desktop.
Save forivall/7cb1224adfab12d7dfbf9fcf2b78df03 to your computer and use it in GitHub Desktop.
tree-shakable wrapper for turning a typescript tuple into a typeguard
import type { Primitive } from 'type-fest';
interface TypeguardTuple<T> extends Omit<readonly [T, ...T[]], never> {
includes(searchElement: unknown): searchElement is T;
includes(searchElement: T, fromIndex?: number): boolean;
}
const typeguardTuple = <T extends Primitive>(tuple: readonly [T, ...T[]]) =>
tuple as Omit<readonly [T, ...T[]], never> as TypeguardTuple<T>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment