(a, b)
| 37 | const MAX_SYNC_UPDATES = 40; |
| 38 | |
| 39 | const isEqualSubset = (a, b) => { |
| 40 | for (const key in b) if (a[key] !== b[key]) return false; |
| 41 | |
| 42 | return true; |
| 43 | }; |
| 44 | |
| 45 | const defaultScrollParentGetter = component => { |
| 46 | const { axis } = component.props; |
no outgoing calls
no test coverage detected
searching dependent graphs…