UNPKG
buffer-es6
Version:
latest (4.9.3)
4.9.3
4.9.2
4.9.1
Node.js Buffer API, for the browser
github.com/calvinmetcalf/buffer-es6
calvinmetcalf/buffer-es6
buffer-es6
/
isArray.js
6 lines
(4 loc)
•
130 B
JavaScript
View Raw
1
2
3
4
5
6
var
toString = {}.
toString
;
export
default
Array
.
isArray
||
function
(
arr
) {
return
toString.
call
(arr) ==
'[object Array]'
; };