(buf1, buf2)
| 199 | } |
| 200 | |
| 201 | function areEqualArrayBuffers(buf1, buf2) { |
| 202 | return buf1.byteLength === buf2.byteLength && |
| 203 | compare(new Uint8Array(buf1), new Uint8Array(buf2)) === 0; |
| 204 | } |
| 205 | |
| 206 | function isEqualBoxedPrimitive(val1, val2) { |
| 207 | if (isNumberObject(val1)) { |
no test coverage detected
searching dependent graphs…