MCPcopy Index your code
hub / github.com/caike/jQuery-Simple-Timer / isArrayLike

Function isArrayLike

examples/bundle.js:823–838  ·  view source on GitHub ↗
( obj )

Source from the content-addressed store, hash-verified

821} );
822
823function isArrayLike( obj ) {
824
825 // Support: iOS 8.2 (not reproducible in simulator)
826 // `in` check used to prevent JIT error (gh-2145)
827 // hasOwn isn't used here due to false negatives
828 // regarding Nodelist length in IE
829 var length = !!obj && "length" in obj && obj.length,
830 type = jQuery.type( obj );
831
832 if ( type === "function" || jQuery.isWindow( obj ) ) {
833 return false;
834 }
835
836 return type === "array" || length === 0 ||
837 typeof length === "number" && length > 0 && ( length - 1 ) in obj;
838}
839var Sizzle =
840/*!
841 * Sizzle CSS Selector Engine v2.2.1

Callers 1

bundle.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected