(stamp)
| 993 | var stampNew = (value, hlc) => hlc ? [value, hlc] : [value]; |
| 994 | var stampNewWithHash = (value, hlc, hash) => [value, hlc, hash]; |
| 995 | var getStampHash = (stamp) => stamp[2]; |
| 996 | var replaceHlcHash = (oldHlc, newHlc) => newHlc > oldHlc ? (oldHlc ? getHash(oldHlc) : 0) ^ getHash(newHlc) : 0; |
| 997 | var getLatestHlc = (hlc1, hlc2) => ( |
| 998 | /* istanbul ignore next */ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…