Created
March 14, 2025 02:42
-
-
Save forivall/7cb1224adfab12d7dfbf9fcf2b78df03 to your computer and use it in GitHub Desktop.
tree-shakable wrapper for turning a typescript tuple into a typeguard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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