(a: ArrayBuffer, b: ArrayBuffer)
| 39 | * @return A boolean value indicating whether the two ArrayBuffers are equal. |
| 40 | */ |
| 41 | export function arrayBuffersEqual(a: ArrayBuffer, b: ArrayBuffer): boolean { |
| 42 | return dataViewsAreEqual(new DataView(a), new DataView(b)); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Compares two DataView instances to determine if they are equal in content and length. |
no test coverage detected