* Check if a variable is an array-like wrapped jQuery, Zepto or similar, where * each indexed value is a Node.
(variable)
| 106 | * each indexed value is a Node. |
| 107 | */ |
| 108 | function isWrapped(variable) { |
| 109 | return variable && variable !== window && isNumber(variable.length) && !isString(variable) && !isFunction(variable) && !isNode(variable) && (variable.length === 0 || isNode(variable[0])); |
| 110 | } |
| 111 | /** |
| 112 | * Check is a property is an enumerable member of an object. |
| 113 | */ |
no test coverage detected
searching dependent graphs…