UNPKG

uint8arrays

Version:

Utility functions to make dealing with Uint8Arrays easier

18 lines 391 B
/** * Returns true if the two passed Uint8Arrays have the same content */ export function equals(a, b) { if (a === b) { return true; } if (a.byteLength !== b.byteLength) { return false; } for (let i = 0; i < a.byteLength; i++) { if (a[i] !== b[i]) { return false; } } return true; } //# sourceMappingURL=equals.js.map