UNPKG
@twilio-paste/paste-reakit-fork
Version:
latest (1.4.1)
1.4.1
Forked Reakit that addresses SSR hydration issues
twilio-labs/paste-reakit
@twilio-paste/paste-reakit-fork
/
src
/
Composite
/
__utils
/
flatten.ts
8 lines
(7 loc)
•
155 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export function
flatten
<
T
>(
grid: T[][]
)
{
const
flattened = []
as
T[];
for
(
const
row of grid) { flattened.push(...row); }
return
flattened; }