drrizleのbatchのtype



This content originally appeared on DEV Community and was authored by Kenji Suzuki

2025-04-28
export const isTuple = <T>(array: T[], gt = 0): array is [T, ...T[]] => {
  return array.length > gt;
};


This content originally appeared on DEV Community and was authored by Kenji Suzuki