Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
devtools
/
devtools-frontend
/
7a19b64c0a03cb739ec195fde5c47d10e82f576d
/
.
/
node_modules
/
isarray
/
index.js
blob: 5f5ad45d46dda97cc2ae37932e0dacf25d06352d [
file
] [
log
] [
blame
]
module
.
exports
=
Array
.
isArray
||
function
(
arr
)
{
return
Object
.
prototype
.
toString
.
call
(
arr
)
==
'[object Array]'
;
};