UNPKG
ui-template-muc
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
A fantastic mobile ui lib implement by Vue
ui-template-muc
/
src
/
utils
/
isArray.js
7 lines
(6 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
default
function
isArray
(
args
) {
if
(
Array
.
isArray
) {
return
Array
.
isArray
(args) }
return
Object
.
prototype
.
toString
.
call
(args) ===
'[object Array]'
}