initial commit

This commit is contained in:
2025-06-18 07:46:59 -04:00
commit 9a82d1a664
167 changed files with 40539 additions and 0 deletions

View File

@ -0,0 +1,7 @@
define( [
"./fnToString"
], function( fnToString ) {
"use strict";
return fnToString.call( Object );
} );

5
public/scripts/jquery/src/var/arr.js vendored Normal file
View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return [];
} );

View File

@ -0,0 +1,6 @@
define( function() {
"use strict";
// [[Class]] -> type pairs
return {};
} );

View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return window.document;
} );

View File

@ -0,0 +1,7 @@
define( [
"./document"
], function( document ) {
"use strict";
return document.documentElement;
} );

16
public/scripts/jquery/src/var/flat.js vendored Normal file
View File

@ -0,0 +1,16 @@
define( [
"./arr"
], function( arr ) {
"use strict";
// Support: IE 9 - 11+, Edge 18+, Android Browser 4.0 - 4.3 only, iOS 7 - 11 only, Safari 11 only,
// Firefox <= 61 only
// Provide fallback for browsers without Array#flat.
return arr.flat ? function( array ) {
return arr.flat.call( array );
} : function( array ) {
return arr.concat.apply( [], array );
};
} );

View File

@ -0,0 +1,7 @@
define( [
"./hasOwn"
], function( hasOwn ) {
"use strict";
return hasOwn.toString;
} );

View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return Object.getPrototypeOf;
} );

View File

@ -0,0 +1,7 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
return class2type.hasOwnProperty;
} );

View File

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

View File

@ -0,0 +1,17 @@
define( function() {
"use strict";
return function isFunction( obj ) {
// Support: Chrome <=57, Firefox <=52
// In some browsers, typeof returns "function" for HTML <object> elements
// (i.e., `typeof document.createElement( "object" ) === "function"`).
// We don't want to classify *any* DOM node as a function.
// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5
// Plus for old WebKit, typeof returns "function" for HTML collections
// (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756)
return typeof obj === "function" && typeof obj.nodeType !== "number" &&
typeof obj.item !== "function";
};
} );

View File

@ -0,0 +1,8 @@
define( function() {
"use strict";
return function isWindow( obj ) {
return obj != null && obj === obj.window;
};
} );

5
public/scripts/jquery/src/var/pnum.js vendored Normal file
View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
} );

9
public/scripts/jquery/src/var/pop.js vendored Normal file
View File

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

7
public/scripts/jquery/src/var/push.js vendored Normal file
View File

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

View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return ( /^(?:checkbox|radio)$/i );
} );

View File

@ -0,0 +1,9 @@
define( [
"../var/pnum"
], function( pnum ) {
"use strict";
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
} );

View File

@ -0,0 +1,8 @@
define( function() {
"use strict";
// Only count HTML whitespace
// Other whitespace should count in values
// https://infra.spec.whatwg.org/#ascii-whitespace
return ( /[^\x20\t\r\n\f]+/g );
} );

View File

@ -0,0 +1,12 @@
define( [
"./whitespace"
], function( whitespace ) {
"use strict";
return new RegExp(
"^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
"g"
);
} );

View File

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

9
public/scripts/jquery/src/var/sort.js vendored Normal file
View File

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

View File

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

View File

@ -0,0 +1,6 @@
define( function() {
"use strict";
// All support tests are defined in their respective modules.
return {};
} );

View File

@ -0,0 +1,7 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
return class2type.toString;
} );

View File

@ -0,0 +1,8 @@
define( function() {
"use strict";
// https://www.w3.org/TR/css3-selectors/#whitespace
return "[\\x20\\t\\r\\n\\f]";
} );