( value: Value, hlc: Hlc | undefined, )
| 23 | >): Stamp<Value> => stampNew(value, hlc); |
| 24 | |
| 25 | export const stampNew = <Value>( |
| 26 | value: Value, |
| 27 | hlc: Hlc | undefined, |
| 28 | ): Stamp<Value> => (hlc ? [value, hlc] : [value]); |
| 29 | |
| 30 | export const stampNewWithHash = <Value>( |
| 31 | value: Value, |
no outgoing calls
no test coverage detected
searching dependent graphs…