Sign in
cobalt
/
cobalt.git
/
72bde07ae3f88e8fd742a603ece725b122de47f5
/
.
/
src
/
cobalt
/
debug
/
remote
/
devtools
/
node_modules
/
isarray
/
index.js
blob: a57f63495943a07b3b08d17e0f9ef6793548c801 [
file
]
var
toString
=
{}.
toString
;
module
.
exports
=
Array
.
isArray
||
function
(
arr
)
{
return
toString
.
call
(
arr
)
==
'[object Array]'
;
};