UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

11 lines 253 B
export function byteArrayEquals(a, b) { if (a.length !== b.length) { return false; } for (let i = 0; i < a.length; i++) { if (a[i] !== b[i]) return false; } return true; } //# sourceMappingURL=bytes.js.map