Bug 1409031 - Document element.isCollection. r=whimboo

MozReview-Commit-ID: EPNA642phzp

--HG--
extra : rebase_source : a63c722635e6d073a8179c787494c42525fdb1eb
This commit is contained in:
Andreas Tolfsen 2017-09-16 14:35:41 +01:00
Родитель f37c62dc56
Коммит 3e17e4b075
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -603,7 +603,15 @@ function findElements(using, value, rootNode, startNode) {
}
}
/** Determines if |obj| is an HTML or JS collection. */
/**
* Determines if <var>obj<var> is an HTML or JS collection.
*
* @param {*} seq
* Type to determine.
*
* @return {boolean}
* True if <var>seq</va> is collection.
*/
element.isCollection = function(seq) {
switch (Object.prototype.toString.call(seq)) {
case "[object Arguments]":