mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-04-13 09:44:40 +00:00
7 lines
119 B
TypeScript
7 lines
119 B
TypeScript
export function fromTuple<T>(value: T | [T]): T {
|
|
if (Array.isArray(value)) {
|
|
return value[0];
|
|
}
|
|
|
|
return value;
|
|
}
|