(obj)
| 40780 | ] |
| 40781 | |
| 40782 | var isDataView = function(obj) { |
| 40783 | return obj && DataView.prototype.isPrototypeOf(obj) |
| 40784 | } |
| 40785 | |
| 40786 | var isArrayBufferView = ArrayBuffer.isView || function(obj) { |
| 40787 | return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1 |