(otherTableHashes)
| 2792 | ]; |
| 2793 | const getMergeableTableHashes = () => mapToObj(contentStampMap[0][0], getStampHash); |
| 2794 | const getMergeableTableDiff = (otherTableHashes) => { |
| 2795 | const newTables = stampNewObj(contentStampMap[0][1]); |
| 2796 | const differingTableHashes = {}; |
| 2797 | mapForEach( |
| 2798 | contentStampMap[0][0], |
| 2799 | (tableId, [tableStampMap, tableHlc, hash]) => objHas(otherTableHashes, tableId) ? hash != otherTableHashes[tableId] ? differingTableHashes[tableId] = hash : 0 : newTables[0][tableId] = stampMapToObjWithoutHash( |
| 2800 | [tableStampMap, tableHlc], |
| 2801 | (rowStampMap) => stampMapToObjWithoutHash(rowStampMap) |
| 2802 | ) |
| 2803 | ); |
| 2804 | return [newTables, differingTableHashes]; |
| 2805 | }; |
| 2806 | const getMergeableRowHashes = (otherTableHashes) => { |
| 2807 | const rowHashes = {}; |
| 2808 | objForEach( |
nothing calls this directly
no test coverage detected
searching dependent graphs…