Fix part of storybook stories

This commit is contained in:
Fedor Indutny 2023-07-19 01:57:38 +02:00 committed by Fedor Indutnyy
parent eaae3ff88b
commit a2b05333f7
8 changed files with 65 additions and 38 deletions

View file

@ -63,3 +63,7 @@ export function areEqual(
): boolean {
return bytes.areEqual(a, b);
}
export function readBigUint64BE(value: Uint8Array): bigint {
return bytes.readBigUint64BE(value);
}