( hlc1: Hlc | undefined, hlc2: Hlc | undefined, )
| 39 | newHlc > oldHlc ? (oldHlc ? getHash(oldHlc) : 0) ^ getHash(newHlc) : 0; |
| 40 | |
| 41 | export const getLatestHlc = ( |
| 42 | hlc1: Hlc | undefined, |
| 43 | hlc2: Hlc | undefined, |
| 44 | ): Hlc => |
| 45 | /*! istanbul ignore next */ |
| 46 | ((hlc1 ?? EMPTY_STRING) > (hlc2 ?? EMPTY_STRING) ? hlc1 : hlc2) ?? |
| 47 | EMPTY_STRING; |
| 48 | |
| 49 | export const stampUpdate = ( |
| 50 | stamp: Stamp<unknown, true>, |
no outgoing calls
no test coverage detected
searching dependent graphs…