projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
262ee40071dae0e645457734b3e5e32448d0d3d7
[platform/framework/web/crosswalk-tizen.git]
/
1
var isKind = require('./isKind');
2
/**
3
*/
4
var isArray = Array.isArray || function (val) {
5
return isKind(val, 'Array');
6
};
7
module.exports = isArray;
8