(a, b)
| 195 | } |
| 196 | |
| 197 | function areSimilarTypedArrays(a, b) { |
| 198 | return a.byteLength === b.byteLength && compare(a, b) === 0; |
| 199 | } |
| 200 | |
| 201 | function areEqualArrayBuffers(buf1, buf2) { |
| 202 | return buf1.byteLength === buf2.byteLength && |
no test coverage detected
searching dependent graphs…