(layout: Layout, cols: number)
| 164 | allowOverlap: false, |
| 165 | |
| 166 | compact(layout: Layout, cols: number): Layout { |
| 167 | // Clone the layout since we modify in place |
| 168 | const out = cloneLayout(layout) as LayoutItem[]; |
| 169 | compactVerticalFast(out, cols, false); |
| 170 | return out; |
| 171 | } |
| 172 | }; |
| 173 | |
| 174 | /** |
nothing calls this directly
no test coverage detected
searching dependent graphs…