diff options
| author | Priyansh <[email protected]> | 2020-12-22 17:50:12 +0530 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2020-12-22 17:50:12 +0530 |
| commit | 22dc033f4938d6a19e086a1cbd36ec5cade5eaab (patch) | |
| tree | 9feb963ccd5c1581e676e41004801abc67db3357 /node_modules/jquery/src/var | |
| parent | e93da8b04da86773247aadb1cbb1912e4f4526b2 (diff) | |
| download | styx-22dc033f4938d6a19e086a1cbd36ec5cade5eaab.tar.xz styx-22dc033f4938d6a19e086a1cbd36ec5cade5eaab.zip | |
Remove node_modules
Diffstat (limited to 'node_modules/jquery/src/var')
20 files changed, 0 insertions, 147 deletions
diff --git a/node_modules/jquery/src/var/ObjectFunctionString.js b/node_modules/jquery/src/var/ObjectFunctionString.js deleted file mode 100644 index f9e850f..0000000 --- a/node_modules/jquery/src/var/ObjectFunctionString.js +++ /dev/null @@ -1,7 +0,0 @@ -define( [ - "./fnToString" -], function( fnToString ) { - "use strict"; - - return fnToString.call( Object ); -} ); diff --git a/node_modules/jquery/src/var/arr.js b/node_modules/jquery/src/var/arr.js deleted file mode 100644 index 84713d8..0000000 --- a/node_modules/jquery/src/var/arr.js +++ /dev/null @@ -1,5 +0,0 @@ -define( function() { - "use strict"; - - return []; -} ); diff --git a/node_modules/jquery/src/var/class2type.js b/node_modules/jquery/src/var/class2type.js deleted file mode 100644 index 4365d46..0000000 --- a/node_modules/jquery/src/var/class2type.js +++ /dev/null @@ -1,6 +0,0 @@ -define( function() { - "use strict"; - - // [[Class]] -> type pairs - return {}; -} ); diff --git a/node_modules/jquery/src/var/document.js b/node_modules/jquery/src/var/document.js deleted file mode 100644 index dd3939d..0000000 --- a/node_modules/jquery/src/var/document.js +++ /dev/null @@ -1,5 +0,0 @@ -define( function() { - "use strict"; - - return window.document; -} ); diff --git a/node_modules/jquery/src/var/documentElement.js b/node_modules/jquery/src/var/documentElement.js deleted file mode 100644 index 0e3f8b4..0000000 --- a/node_modules/jquery/src/var/documentElement.js +++ /dev/null @@ -1,7 +0,0 @@ -define( [ - "./document" -], function( document ) { - "use strict"; - - return document.documentElement; -} ); diff --git a/node_modules/jquery/src/var/flat.js b/node_modules/jquery/src/var/flat.js deleted file mode 100644 index 86f91a6..0000000 --- a/node_modules/jquery/src/var/flat.js +++ /dev/null @@ -1,16 +0,0 @@ -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 ); -}; - -} ); diff --git a/node_modules/jquery/src/var/fnToString.js b/node_modules/jquery/src/var/fnToString.js deleted file mode 100644 index 18c43ff..0000000 --- a/node_modules/jquery/src/var/fnToString.js +++ /dev/null @@ -1,7 +0,0 @@ -define( [ - "./hasOwn" -], function( hasOwn ) { - "use strict"; - - return hasOwn.toString; -} ); diff --git a/node_modules/jquery/src/var/getProto.js b/node_modules/jquery/src/var/getProto.js deleted file mode 100644 index 965fab8..0000000 --- a/node_modules/jquery/src/var/getProto.js +++ /dev/null @@ -1,5 +0,0 @@ -define( function() { - "use strict"; - - return Object.getPrototypeOf; -} ); diff --git a/node_modules/jquery/src/var/hasOwn.js b/node_modules/jquery/src/var/hasOwn.js deleted file mode 100644 index 44ab680..0000000 --- a/node_modules/jquery/src/var/hasOwn.js +++ /dev/null @@ -1,7 +0,0 @@ -define( [ - "./class2type" -], function( class2type ) { - "use strict"; - - return class2type.hasOwnProperty; -} ); diff --git a/node_modules/jquery/src/var/indexOf.js b/node_modules/jquery/src/var/indexOf.js deleted file mode 100644 index 8320b98..0000000 --- a/node_modules/jquery/src/var/indexOf.js +++ /dev/null @@ -1,7 +0,0 @@ -define( [ - "./arr" -], function( arr ) { - "use strict"; - - return arr.indexOf; -} ); diff --git a/node_modules/jquery/src/var/isFunction.js b/node_modules/jquery/src/var/isFunction.js deleted file mode 100644 index dad662e..0000000 --- a/node_modules/jquery/src/var/isFunction.js +++ /dev/null @@ -1,13 +0,0 @@ -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. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - -} ); diff --git a/node_modules/jquery/src/var/isWindow.js b/node_modules/jquery/src/var/isWindow.js deleted file mode 100644 index 2ba1168..0000000 --- a/node_modules/jquery/src/var/isWindow.js +++ /dev/null @@ -1,8 +0,0 @@ -define( function() { - "use strict"; - - return function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - -} ); diff --git a/node_modules/jquery/src/var/pnum.js b/node_modules/jquery/src/var/pnum.js deleted file mode 100644 index 6f06d73..0000000 --- a/node_modules/jquery/src/var/pnum.js +++ /dev/null @@ -1,5 +0,0 @@ -define( function() { - "use strict"; - - return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; -} ); diff --git a/node_modules/jquery/src/var/push.js b/node_modules/jquery/src/var/push.js deleted file mode 100644 index 9465620..0000000 --- a/node_modules/jquery/src/var/push.js +++ /dev/null @@ -1,7 +0,0 @@ -define( [ - "./arr" -], function( arr ) { - "use strict"; - - return arr.push; -} ); diff --git a/node_modules/jquery/src/var/rcheckableType.js b/node_modules/jquery/src/var/rcheckableType.js deleted file mode 100644 index 25bbcb4..0000000 --- a/node_modules/jquery/src/var/rcheckableType.js +++ /dev/null @@ -1,5 +0,0 @@ -define( function() { - "use strict"; - - return ( /^(?:checkbox|radio)$/i ); -} ); diff --git a/node_modules/jquery/src/var/rcssNum.js b/node_modules/jquery/src/var/rcssNum.js deleted file mode 100644 index 4214b14..0000000 --- a/node_modules/jquery/src/var/rcssNum.js +++ /dev/null @@ -1,9 +0,0 @@ -define( [ - "../var/pnum" -], function( pnum ) { - -"use strict"; - -return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - -} ); diff --git a/node_modules/jquery/src/var/rnothtmlwhite.js b/node_modules/jquery/src/var/rnothtmlwhite.js deleted file mode 100644 index 29eebf2..0000000 --- a/node_modules/jquery/src/var/rnothtmlwhite.js +++ /dev/null @@ -1,8 +0,0 @@ -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 ); -} ); diff --git a/node_modules/jquery/src/var/slice.js b/node_modules/jquery/src/var/slice.js deleted file mode 100644 index 915f837..0000000 --- a/node_modules/jquery/src/var/slice.js +++ /dev/null @@ -1,7 +0,0 @@ -define( [ - "./arr" -], function( arr ) { - "use strict"; - - return arr.slice; -} ); diff --git a/node_modules/jquery/src/var/support.js b/node_modules/jquery/src/var/support.js deleted file mode 100644 index 094d0ae..0000000 --- a/node_modules/jquery/src/var/support.js +++ /dev/null @@ -1,6 +0,0 @@ -define( function() { - "use strict"; - - // All support tests are defined in their respective modules. - return {}; -} ); diff --git a/node_modules/jquery/src/var/toString.js b/node_modules/jquery/src/var/toString.js deleted file mode 100644 index ff4ecdc..0000000 --- a/node_modules/jquery/src/var/toString.js +++ /dev/null @@ -1,7 +0,0 @@ -define( [ - "./class2type" -], function( class2type ) { - "use strict"; - - return class2type.toString; -} ); |
