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
]
Paul Lewis
40e2867
2020-11-27 09:51:37 +0000
[
diff
] [
blame
]
1
module
.
exports
=
Array
.
isArray
||
function
(
arr
)
{
2
return
Object
.
prototype
.
toString
.
call
(
arr
)
==
'[object Array]'
;
3
};