1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 02:09:22 +02:00
Daniel Neto 2023-06-30 09:56:13 -03:00
parent 37e90e3dfe
commit 214f5d9fc3
4949 changed files with 1393320 additions and 29 deletions

7
node_modules/jquery/src/core/var/rhtml.js generated vendored Normal file
View file

@ -0,0 +1,7 @@
define( function() {
"use strict";
return ( /HTML$/i );
} );

21
node_modules/jquery/src/selector/contains.js generated vendored Normal file
View file

@ -0,0 +1,21 @@
define( [
"../core"
], function( jQuery ) {
"use strict";
// Note: an element does not contain itself
jQuery.contains = function( a, b ) {
var bup = b && b.parentNode;
return a === bup || !!( bup && bup.nodeType === 1 && (
// Support: IE 9 - 11+
// IE doesn't have `contains` on SVG.
a.contains ?
a.contains( bup ) :
a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
) );
};
} );

31
node_modules/jquery/src/selector/escapeSelector.js generated vendored Normal file
View file

@ -0,0 +1,31 @@
define( [
"../core"
], function( jQuery ) {
"use strict";
// CSS string/identifier serialization
// https://drafts.csswg.org/cssom/#common-serializing-idioms
var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;
function fcssescape( ch, asCodePoint ) {
if ( asCodePoint ) {
// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
if ( ch === "\0" ) {
return "\uFFFD";
}
// Control characters and (dependent upon position) numbers get escaped as code points
return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
}
// Other potentially-special ASCII characters get backslash-escaped
return "\\" + ch;
}
jQuery.escapeSelector = function( sel ) {
return ( sel + "" ).replace( rcssescape, fcssescape );
};
} );

9
node_modules/jquery/src/var/pop.js generated vendored Normal file
View file

@ -0,0 +1,9 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.pop;
} );

9
node_modules/jquery/src/var/sort.js generated vendored Normal file
View file

@ -0,0 +1,9 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.sort;
} );

9
node_modules/jquery/src/var/splice.js generated vendored Normal file
View file

@ -0,0 +1,9 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.splice;
} );