diff options
Diffstat (limited to 'bower_components/jquery/src/var')
-rw-r--r-- | bower_components/jquery/src/var/arr.js | 3 | ||||
-rw-r--r-- | bower_components/jquery/src/var/class2type.js | 4 | ||||
-rw-r--r-- | bower_components/jquery/src/var/concat.js | 5 | ||||
-rw-r--r-- | bower_components/jquery/src/var/hasOwn.js | 5 | ||||
-rw-r--r-- | bower_components/jquery/src/var/indexOf.js | 5 | ||||
-rw-r--r-- | bower_components/jquery/src/var/pnum.js | 3 | ||||
-rw-r--r-- | bower_components/jquery/src/var/push.js | 5 | ||||
-rw-r--r-- | bower_components/jquery/src/var/rnotwhite.js | 3 | ||||
-rw-r--r-- | bower_components/jquery/src/var/slice.js | 5 | ||||
-rw-r--r-- | bower_components/jquery/src/var/strundefined.js | 3 | ||||
-rw-r--r-- | bower_components/jquery/src/var/support.js | 4 | ||||
-rw-r--r-- | bower_components/jquery/src/var/toString.js | 5 |
12 files changed, 50 insertions, 0 deletions
diff --git a/bower_components/jquery/src/var/arr.js b/bower_components/jquery/src/var/arr.js new file mode 100644 index 00000000..b18fc9ce --- /dev/null +++ b/bower_components/jquery/src/var/arr.js @@ -0,0 +1,3 @@ +define(function() { + return []; +}); diff --git a/bower_components/jquery/src/var/class2type.js b/bower_components/jquery/src/var/class2type.js new file mode 100644 index 00000000..e674c3ba --- /dev/null +++ b/bower_components/jquery/src/var/class2type.js @@ -0,0 +1,4 @@ +define(function() { + // [[Class]] -> type pairs + return {}; +}); diff --git a/bower_components/jquery/src/var/concat.js b/bower_components/jquery/src/var/concat.js new file mode 100644 index 00000000..7dcf77e3 --- /dev/null +++ b/bower_components/jquery/src/var/concat.js @@ -0,0 +1,5 @@ +define([ + "./arr" +], function( arr ) { + return arr.concat; +}); diff --git a/bower_components/jquery/src/var/hasOwn.js b/bower_components/jquery/src/var/hasOwn.js new file mode 100644 index 00000000..32c002af --- /dev/null +++ b/bower_components/jquery/src/var/hasOwn.js @@ -0,0 +1,5 @@ +define([ + "./class2type" +], function( class2type ) { + return class2type.hasOwnProperty; +}); diff --git a/bower_components/jquery/src/var/indexOf.js b/bower_components/jquery/src/var/indexOf.js new file mode 100644 index 00000000..cdbe3c74 --- /dev/null +++ b/bower_components/jquery/src/var/indexOf.js @@ -0,0 +1,5 @@ +define([ + "./arr" +], function( arr ) { + return arr.indexOf; +}); diff --git a/bower_components/jquery/src/var/pnum.js b/bower_components/jquery/src/var/pnum.js new file mode 100644 index 00000000..40704472 --- /dev/null +++ b/bower_components/jquery/src/var/pnum.js @@ -0,0 +1,3 @@ +define(function() { + return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; +}); diff --git a/bower_components/jquery/src/var/push.js b/bower_components/jquery/src/var/push.js new file mode 100644 index 00000000..ad6f0a17 --- /dev/null +++ b/bower_components/jquery/src/var/push.js @@ -0,0 +1,5 @@ +define([ + "./arr" +], function( arr ) { + return arr.push; +}); diff --git a/bower_components/jquery/src/var/rnotwhite.js b/bower_components/jquery/src/var/rnotwhite.js new file mode 100644 index 00000000..7c69bec5 --- /dev/null +++ b/bower_components/jquery/src/var/rnotwhite.js @@ -0,0 +1,3 @@ +define(function() { + return (/\S+/g); +}); diff --git a/bower_components/jquery/src/var/slice.js b/bower_components/jquery/src/var/slice.js new file mode 100644 index 00000000..614d46ca --- /dev/null +++ b/bower_components/jquery/src/var/slice.js @@ -0,0 +1,5 @@ +define([ + "./arr" +], function( arr ) { + return arr.slice; +}); diff --git a/bower_components/jquery/src/var/strundefined.js b/bower_components/jquery/src/var/strundefined.js new file mode 100644 index 00000000..04e16b03 --- /dev/null +++ b/bower_components/jquery/src/var/strundefined.js @@ -0,0 +1,3 @@ +define(function() { + return typeof undefined; +}); diff --git a/bower_components/jquery/src/var/support.js b/bower_components/jquery/src/var/support.js new file mode 100644 index 00000000..b25dbc74 --- /dev/null +++ b/bower_components/jquery/src/var/support.js @@ -0,0 +1,4 @@ +define(function() { + // All support tests are defined in their respective modules. + return {}; +}); diff --git a/bower_components/jquery/src/var/toString.js b/bower_components/jquery/src/var/toString.js new file mode 100644 index 00000000..ca92d222 --- /dev/null +++ b/bower_components/jquery/src/var/toString.js @@ -0,0 +1,5 @@ +define([ + "./class2type" +], function( class2type ) { + return class2type.toString; +}); |