initial commit
This commit is contained in:
7
public/scripts/jquery/src/var/ObjectFunctionString.js
vendored
Normal file
7
public/scripts/jquery/src/var/ObjectFunctionString.js
vendored
Normal 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
5
public/scripts/jquery/src/var/arr.js
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return [];
|
||||
} );
|
6
public/scripts/jquery/src/var/class2type.js
vendored
Normal file
6
public/scripts/jquery/src/var/class2type.js
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
// [[Class]] -> type pairs
|
||||
return {};
|
||||
} );
|
5
public/scripts/jquery/src/var/document.js
vendored
Normal file
5
public/scripts/jquery/src/var/document.js
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return window.document;
|
||||
} );
|
7
public/scripts/jquery/src/var/documentElement.js
vendored
Normal file
7
public/scripts/jquery/src/var/documentElement.js
vendored
Normal 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
16
public/scripts/jquery/src/var/flat.js
vendored
Normal 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 );
|
||||
};
|
||||
|
||||
} );
|
7
public/scripts/jquery/src/var/fnToString.js
vendored
Normal file
7
public/scripts/jquery/src/var/fnToString.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./hasOwn"
|
||||
], function( hasOwn ) {
|
||||
"use strict";
|
||||
|
||||
return hasOwn.toString;
|
||||
} );
|
5
public/scripts/jquery/src/var/getProto.js
vendored
Normal file
5
public/scripts/jquery/src/var/getProto.js
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return Object.getPrototypeOf;
|
||||
} );
|
7
public/scripts/jquery/src/var/hasOwn.js
vendored
Normal file
7
public/scripts/jquery/src/var/hasOwn.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./class2type"
|
||||
], function( class2type ) {
|
||||
"use strict";
|
||||
|
||||
return class2type.hasOwnProperty;
|
||||
} );
|
7
public/scripts/jquery/src/var/indexOf.js
vendored
Normal file
7
public/scripts/jquery/src/var/indexOf.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.indexOf;
|
||||
} );
|
17
public/scripts/jquery/src/var/isFunction.js
vendored
Normal file
17
public/scripts/jquery/src/var/isFunction.js
vendored
Normal 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";
|
||||
};
|
||||
|
||||
} );
|
8
public/scripts/jquery/src/var/isWindow.js
vendored
Normal file
8
public/scripts/jquery/src/var/isWindow.js
vendored
Normal 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
5
public/scripts/jquery/src/var/pnum.js
vendored
Normal 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
9
public/scripts/jquery/src/var/pop.js
vendored
Normal 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
7
public/scripts/jquery/src/var/push.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.push;
|
||||
} );
|
5
public/scripts/jquery/src/var/rcheckableType.js
vendored
Normal file
5
public/scripts/jquery/src/var/rcheckableType.js
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return ( /^(?:checkbox|radio)$/i );
|
||||
} );
|
9
public/scripts/jquery/src/var/rcssNum.js
vendored
Normal file
9
public/scripts/jquery/src/var/rcssNum.js
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
define( [
|
||||
"../var/pnum"
|
||||
], function( pnum ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
|
||||
|
||||
} );
|
8
public/scripts/jquery/src/var/rnothtmlwhite.js
vendored
Normal file
8
public/scripts/jquery/src/var/rnothtmlwhite.js
vendored
Normal 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 );
|
||||
} );
|
12
public/scripts/jquery/src/var/rtrimCSS.js
vendored
Normal file
12
public/scripts/jquery/src/var/rtrimCSS.js
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
define( [
|
||||
"./whitespace"
|
||||
], function( whitespace ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
return new RegExp(
|
||||
"^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
|
||||
"g"
|
||||
);
|
||||
|
||||
} );
|
7
public/scripts/jquery/src/var/slice.js
vendored
Normal file
7
public/scripts/jquery/src/var/slice.js
vendored
Normal 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
9
public/scripts/jquery/src/var/sort.js
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
return arr.sort;
|
||||
|
||||
} );
|
9
public/scripts/jquery/src/var/splice.js
vendored
Normal file
9
public/scripts/jquery/src/var/splice.js
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
return arr.splice;
|
||||
|
||||
} );
|
6
public/scripts/jquery/src/var/support.js
vendored
Normal file
6
public/scripts/jquery/src/var/support.js
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
define( function() {
|
||||
"use strict";
|
||||
|
||||
// All support tests are defined in their respective modules.
|
||||
return {};
|
||||
} );
|
7
public/scripts/jquery/src/var/toString.js
vendored
Normal file
7
public/scripts/jquery/src/var/toString.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
define( [
|
||||
"./class2type"
|
||||
], function( class2type ) {
|
||||
"use strict";
|
||||
|
||||
return class2type.toString;
|
||||
} );
|
8
public/scripts/jquery/src/var/whitespace.js
vendored
Normal file
8
public/scripts/jquery/src/var/whitespace.js
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
define( function() {
|
||||
|
||||
"use strict";
|
||||
|
||||
// https://www.w3.org/TR/css3-selectors/#whitespace
|
||||
return "[\\x20\\t\\r\\n\\f]";
|
||||
|
||||
} );
|
Reference in New Issue
Block a user