MCPcopy Create free account
hub / github.com/kkroening/ffmpeg-python / dir

Function dir

doc/html/_static/jquery-3.2.1.js:2809–2822  ·  view source on GitHub ↗
( elem, dir, until )

Source from the content-addressed store, hash-verified

2807
2808
2809var dir = function( elem, dir, until ) {
2810 var matched = [],
2811 truncate = until !== undefined;
2812
2813 while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
2814 if ( elem.nodeType === 1 ) {
2815 if ( truncate && jQuery( elem ).is( until ) ) {
2816 break;
2817 }
2818 matched.push( elem );
2819 }
2820 }
2821 return matched;
2822};
2823
2824
2825var siblings = function( n, elem ) {

Callers 1

jquery-3.2.1.jsFile · 0.85

Calls 1

jQueryFunction · 0.85

Tested by

no test coverage detected