(obj)
| 7539 | ] |
| 7540 | |
| 7541 | var isDataView = function(obj) { |
| 7542 | return obj && DataView.prototype.isPrototypeOf(obj) |
| 7543 | } |
| 7544 | |
| 7545 | var isArrayBufferView = ArrayBuffer.isView || function(obj) { |
| 7546 | return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1 |