Sign in
chromium
/
devtools
/
devtools-frontend.git
/
refs/heads/chromium/6007
/
.
/
node_modules
/
isarray
/
index.js
blob: 5f5ad45d46dda97cc2ae37932e0dacf25d06352d [
file
] [
log
] [
blame
] [
edit
]
module
.
exports
=
Array
.
isArray
||
function
(
arr
)
{
return
Object
.
prototype
.
toString
.
call
(
arr
)
==
'[object Array]'
;
};