add Ox.isNodeList
This commit is contained in:
parent
c106fa845e
commit
aaa24bf309
1 changed files with 4 additions and 0 deletions
|
@ -252,6 +252,10 @@ Ox.isNaN = function(value) {
|
||||||
return value !== value;
|
return value !== value;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Ox.isNodeList = function(value) {
|
||||||
|
return Ox.typeOf(value) == 'nodelist';
|
||||||
|
};
|
||||||
|
|
||||||
/*@
|
/*@
|
||||||
Ox.isNodeList <f> Tests if a value is a nodelist
|
Ox.isNodeList <f> Tests if a value is a nodelist
|
||||||
(value) -> <b> True is the value is a nodelist
|
(value) -> <b> True is the value is a nodelist
|
||||||
|
|
Loading…
Reference in a new issue