(data: unknown, bytes = 8)
| 18 | } |
| 19 | |
| 20 | export function jsonHash(data: unknown, bytes = 8): string { |
| 21 | return createHash('shake256', { outputLength: bytes }) |
| 22 | .update(JSON.stringify(data) || 'null') |
| 23 | .digest('hex'); |
| 24 | } |
no outgoing calls
no test coverage detected