( obj )
| 929 | }); |
| 930 | |
| 931 | function isArraylike( obj ) { |
| 932 | var length = obj.length, |
| 933 | type = jQuery.type( obj ); |
| 934 | |
| 935 | if ( jQuery.isWindow( obj ) ) { |
| 936 | return false; |
| 937 | } |
| 938 | |
| 939 | if ( obj.nodeType === 1 && length ) { |
| 940 | return true; |
| 941 | } |
| 942 | |
| 943 | return type === "array" || type !== "function" && |
| 944 | ( length === 0 || |
| 945 | typeof length === "number" && length > 0 && ( length - 1 ) in obj ); |
| 946 | } |
| 947 | |
| 948 | // All jQuery objects should point back to these |
| 949 | rootjQuery = jQuery(document); |
no outgoing calls
no test coverage detected
searching dependent graphs…