(V)
| 681 | } |
| 682 | |
| 683 | function getDataViewOrTypedArrayByteOffset(V) { |
| 684 | return isDataView(V) ? |
| 685 | DataViewPrototypeGetByteOffset(V) : TypedArrayPrototypeGetByteOffset(V); |
| 686 | } |
| 687 | |
| 688 | function getDataViewOrTypedArrayByteLength(V) { |
| 689 | return isDataView(V) ? |
no test coverage detected
searching dependent graphs…