UNPKG
arquero-arrow
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
0.0.1
Arrow serialization support for Arquero.
uwdata/arquero-arrow
arquero-arrow
/
src
/
util
/
is-typed-array.js
4 lines
•
152 B
JavaScript
View Raw
1
2
3
4
export
default
function
(
value
) {
// all typed arrays should share the same method prototype
return
value && value.
map
===
Int8Array
.
prototype
.
map
; }