(V)
| 676 | } |
| 677 | |
| 678 | function getDataViewOrTypedArrayBuffer(V) { |
| 679 | return isDataView(V) ? |
| 680 | DataViewPrototypeGetBuffer(V) : TypedArrayPrototypeGetBuffer(V); |
| 681 | } |
| 682 | |
| 683 | function getDataViewOrTypedArrayByteOffset(V) { |
| 684 | return isDataView(V) ? |
no test coverage detected
searching dependent graphs…