(props = {})
| 20 | } |
| 21 | |
| 22 | function createCellMeasurerCache(props = {}) { |
| 23 | return new CellMeasurerCache({ |
| 24 | defaultHeight: CELL_SIZE_MULTIPLIER, |
| 25 | defaultWidth: CELL_SIZE_MULTIPLIER, |
| 26 | fixedWidth: true, |
| 27 | keyMapper: index => index, |
| 28 | ...props, |
| 29 | }); |
| 30 | } |
| 31 | |
| 32 | function createCellPositioner(cache) { |
| 33 | return createCellPositionerUtil({ |
no outgoing calls
no test coverage detected
searching dependent graphs…