ts-array-as-tuple
v1.0.1
Published
Function that asserts the length of an array and casts it to a tuple.
Downloads
1
Readme
ts-array-as-tuple
Function that asserts the length of an array and casts it to a tuple.
Example
import { asTuple } from 'ts-array-as-tuple';
const array: string[] = 'hello world'.split(' ');
const tuple: [string, string] = asTuple(array, 2);
asTuple(array, 1);
// Error: Unexpected array length, expected 1 but got 2.
asTuple(array, 3);
// Error: Unexpected array length, expected 3 but got 2.