isArray¶
webix.
isArray
(obj)¶webix.isArray helper.
Please look into the linked official documentation.
Referenced by¶
- helpers
_ready_code()
,count()
,animate()
,copy()
,editors
,i18n
,ui()
,dateFilter
.- mixins
AtomDataLoader()
,CodeParser()
,json()
,DataMove()
,DataStore()
,EditAbility()
,MapCollection()
,SelectionModel()
,Touch()
,TreeDataMove()
,TreeStore()
.- views
calendar()
,datepicker()
,slider()
,text()
.
External references¶
Code¶
1 2 3 | webix.isArray = function(obj) {
return Array.isArray?Array.isArray(obj):(Object.prototype.toString.call(obj) === '[object Array]');
};
|