UNPKG
@plotly/regl
Version:
latest (2.1.2)
2.1.2
2.1.1
regl is a fast functional WebGL framework.
plotly.github.io/regl
plotly/regl
@plotly/regl
/
lib
/
util
/
is-array-like.js
5 lines
(4 loc)
•
138 B
JavaScript
View Raw
1
2
3
4
5
var
isTypedArray =
require
(
'./is-typed-array'
)
module
.
exports
=
function
isArrayLike
(
s
) {
return
Array
.
isArray
(s) ||
isTypedArray
(s) }