aboutsummaryrefslogtreecommitdiff
path: root/node_modules/jquery/src/var
diff options
context:
space:
mode:
authorKumar Damani <kumar.damani@mail.utoronto.ca>2019-04-16 13:17:06 +0000
committerKumar Damani <kumar.damani@mail.utoronto.ca>2019-04-16 13:17:06 +0000
commitdc46b87abee1e441c07524ddde67fd902a919336 (patch)
tree13eba08b8655dfd78e9600ec5f612011a0bf3b35 /node_modules/jquery/src/var
parent26f4b38e9e5a202756a7c33abc775aea2617aeaf (diff)
added some dependencies to package.json
Diffstat (limited to 'node_modules/jquery/src/var')
-rw-r--r--node_modules/jquery/src/var/ObjectFunctionString.js7
-rw-r--r--node_modules/jquery/src/var/arr.js5
-rw-r--r--node_modules/jquery/src/var/class2type.js6
-rw-r--r--node_modules/jquery/src/var/concat.js7
-rw-r--r--node_modules/jquery/src/var/document.js5
-rw-r--r--node_modules/jquery/src/var/documentElement.js7
-rw-r--r--node_modules/jquery/src/var/fnToString.js7
-rw-r--r--node_modules/jquery/src/var/getProto.js5
-rw-r--r--node_modules/jquery/src/var/hasOwn.js7
-rw-r--r--node_modules/jquery/src/var/indexOf.js7
-rw-r--r--node_modules/jquery/src/var/pnum.js5
-rw-r--r--node_modules/jquery/src/var/push.js7
-rw-r--r--node_modules/jquery/src/var/rcssNum.js9
-rw-r--r--node_modules/jquery/src/var/rnotwhite.js5
-rw-r--r--node_modules/jquery/src/var/slice.js7
-rw-r--r--node_modules/jquery/src/var/support.js6
-rw-r--r--node_modules/jquery/src/var/toString.js7
17 files changed, 0 insertions, 109 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/concat.js b/node_modules/jquery/src/var/concat.js
deleted file mode 100644
index e47c19d..0000000
--- a/node_modules/jquery/src/var/concat.js
+++ /dev/null
@@ -1,7 +0,0 @@
-define( [
- "./arr"
-], function( arr ) {
- "use strict";
-
- return arr.concat;
-} );
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/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/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/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/rnotwhite.js b/node_modules/jquery/src/var/rnotwhite.js
deleted file mode 100644
index 91bdec2..0000000
--- a/node_modules/jquery/src/var/rnotwhite.js
+++ /dev/null
@@ -1,5 +0,0 @@
-define( function() {
- "use strict";
-
- return ( /\S+/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;
-} );