( value: ValueOrUndefined, valueHlc: Hlc, // legacy v5; jsonStringWithUndefined in v7 )
| 56 | ): Hash => getHash(valueId + ':' + valueHash); |
| 57 | |
| 58 | export const getValueHash: typeof getValueHashDecl = ( |
| 59 | value: ValueOrUndefined, |
| 60 | valueHlc: Hlc, |
| 61 | // legacy v5; jsonStringWithUndefined in v7 |
| 62 | ): Hash => getHash(jsonStringWithMap(value ?? null) + ':' + valueHlc); |
| 63 | |
| 64 | export const getCellHash: typeof getCellHashDecl = getValueHash; |
| 65 |
no test coverage detected
searching dependent graphs…