(otherTableHashes)
| 2804 | return [newTables, differingTableHashes]; |
| 2805 | }; |
| 2806 | const getMergeableRowHashes = (otherTableHashes) => { |
| 2807 | const rowHashes = {}; |
| 2808 | objForEach( |
| 2809 | otherTableHashes, |
| 2810 | (otherTableHash, tableId) => ifNotUndefined( |
| 2811 | mapGet(contentStampMap[0][0], tableId), |
| 2812 | ([rowStampMaps, , tableHash]) => tableHash != otherTableHash ? mapForEach( |
| 2813 | rowStampMaps, |
| 2814 | (rowId, [, , rowHash]) => objEnsure(rowHashes, tableId, objNew)[rowId] = rowHash |
| 2815 | ) : 0 |
| 2816 | ) |
| 2817 | ); |
| 2818 | return rowHashes; |
| 2819 | }; |
| 2820 | const getMergeableRowDiff = (otherTableRowHashes) => { |
| 2821 | const newRows = stampNewObj(contentStampMap[0][1]); |
| 2822 | const differingRowHashes = {}; |
nothing calls this directly
no test coverage detected
searching dependent graphs…