(ar)
| 8755 | } |
| 8756 | |
| 8757 | function isTypedArray(ar) { |
| 8758 | // Unfortunately there's no way to check if an object is a TypedArray |
| 8759 | // We have to check if it's one of these types |
| 8760 | return (typeof ar === 'object' && /\w+Array]$/.test(objectToString(ar))); |
| 8761 | } |
| 8762 | |
| 8763 | function isArray(ar) { |
| 8764 | return Array.isArray(ar) || |
no test coverage detected