(columns: number, key: string)
| 79 | } |
| 80 | |
| 81 | function sharedHeightCacheKey(columns: number, key: string): string { |
| 82 | return `${columns}:${key}` |
| 83 | } |
| 84 | |
| 85 | function readSharedHeight(columns: number, key: string): number | undefined { |
| 86 | const cacheKey = sharedHeightCacheKey(columns, key) |
no outgoing calls
no test coverage detected