corrade-http-templates

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 60  →  ?path2? @ 61
/groupChat/node_modules/jquery/src/var/ObjectFunctionString.js
@@ -0,0 +1,7 @@
define( [
"./fnToString"
], function( fnToString ) {
"use strict";
 
return fnToString.call( Object );
} );
/groupChat/node_modules/jquery/src/var/arr.js
@@ -0,0 +1,5 @@
define( function() {
"use strict";
 
return [];
} );
/groupChat/node_modules/jquery/src/var/class2type.js
@@ -0,0 +1,6 @@
define( function() {
"use strict";
 
// [[Class]] -> type pairs
return {};
} );
/groupChat/node_modules/jquery/src/var/concat.js
@@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
 
return arr.concat;
} );
/groupChat/node_modules/jquery/src/var/document.js
@@ -0,0 +1,5 @@
define( function() {
"use strict";
 
return window.document;
} );
/groupChat/node_modules/jquery/src/var/documentElement.js
@@ -0,0 +1,7 @@
define( [
"./document"
], function( document ) {
"use strict";
 
return document.documentElement;
} );
/groupChat/node_modules/jquery/src/var/fnToString.js
@@ -0,0 +1,7 @@
define( [
"./hasOwn"
], function( hasOwn ) {
"use strict";
 
return hasOwn.toString;
} );
/groupChat/node_modules/jquery/src/var/getProto.js
@@ -0,0 +1,5 @@
define( function() {
"use strict";
 
return Object.getPrototypeOf;
} );
/groupChat/node_modules/jquery/src/var/hasOwn.js
@@ -0,0 +1,7 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
 
return class2type.hasOwnProperty;
} );
/groupChat/node_modules/jquery/src/var/indexOf.js
@@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
 
return arr.indexOf;
} );
/groupChat/node_modules/jquery/src/var/isFunction.js
@@ -0,0 +1,13 @@
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";
};
 
} );
/groupChat/node_modules/jquery/src/var/isWindow.js
@@ -0,0 +1,8 @@
define( function() {
"use strict";
 
return function isWindow( obj ) {
return obj != null && obj === obj.window;
};
 
} );
/groupChat/node_modules/jquery/src/var/pnum.js
@@ -0,0 +1,5 @@
define( function() {
"use strict";
 
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
} );
/groupChat/node_modules/jquery/src/var/push.js
@@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
 
return arr.push;
} );
/groupChat/node_modules/jquery/src/var/rcssNum.js
@@ -0,0 +1,9 @@
define( [
"../var/pnum"
], function( pnum ) {
 
"use strict";
 
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
 
} );
/groupChat/node_modules/jquery/src/var/rnothtmlwhite.js
@@ -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 );
} );
/groupChat/node_modules/jquery/src/var/slice.js
@@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
 
return arr.slice;
} );
/groupChat/node_modules/jquery/src/var/support.js
@@ -0,0 +1,6 @@
define( function() {
"use strict";
 
// All support tests are defined in their respective modules.
return {};
} );
/groupChat/node_modules/jquery/src/var/toString.js
@@ -0,0 +1,7 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
 
return class2type.toString;
} );