factor out tuple logic into from-tuple.ts

This commit is contained in:
Hazelnoot 2024-10-15 14:03:57 -04:00
parent 4e592fb1c9
commit 86a693b182
6 changed files with 33 additions and 12 deletions

View file

@ -0,0 +1,7 @@
export function fromTuple<T>(value: T | [T]): T {
if (Array.isArray(value)) {
return value[0];
}
return value;
}