esqueleto basico
This commit is contained in:
parent
8eb441e5f5
commit
0dc723713d
350 changed files with 90726 additions and 0 deletions
7
bower_components/jquery/src/var/ObjectFunctionString.js
vendored
Normal file
7
bower_components/jquery/src/var/ObjectFunctionString.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./fnToString"
|
||||
], function( fnToString ) {
|
||||
"use strict";
|
||||
|
||||
return fnToString.call( Object );
|
||||
} );
|
5
bower_components/jquery/src/var/arr.js
vendored
Normal file
5
bower_components/jquery/src/var/arr.js
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return [];
|
||||
} );
|
6
bower_components/jquery/src/var/class2type.js
vendored
Normal file
6
bower_components/jquery/src/var/class2type.js
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
define( function() {
|
||||
"use strict";
|
||||
|
||||
// [[Class]] -> type pairs
|
||||
return {};
|
||||
} );
|
7
bower_components/jquery/src/var/concat.js
vendored
Normal file
7
bower_components/jquery/src/var/concat.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.concat;
|
||||
} );
|
5
bower_components/jquery/src/var/document.js
vendored
Normal file
5
bower_components/jquery/src/var/document.js
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return window.document;
|
||||
} );
|
7
bower_components/jquery/src/var/documentElement.js
vendored
Normal file
7
bower_components/jquery/src/var/documentElement.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./document"
|
||||
], function( document ) {
|
||||
"use strict";
|
||||
|
||||
return document.documentElement;
|
||||
} );
|
7
bower_components/jquery/src/var/fnToString.js
vendored
Normal file
7
bower_components/jquery/src/var/fnToString.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./hasOwn"
|
||||
], function( hasOwn ) {
|
||||
"use strict";
|
||||
|
||||
return hasOwn.toString;
|
||||
} );
|
5
bower_components/jquery/src/var/getProto.js
vendored
Normal file
5
bower_components/jquery/src/var/getProto.js
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return Object.getPrototypeOf;
|
||||
} );
|
7
bower_components/jquery/src/var/hasOwn.js
vendored
Normal file
7
bower_components/jquery/src/var/hasOwn.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./class2type"
|
||||
], function( class2type ) {
|
||||
"use strict";
|
||||
|
||||
return class2type.hasOwnProperty;
|
||||
} );
|
7
bower_components/jquery/src/var/indexOf.js
vendored
Normal file
7
bower_components/jquery/src/var/indexOf.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.indexOf;
|
||||
} );
|
5
bower_components/jquery/src/var/pnum.js
vendored
Normal file
5
bower_components/jquery/src/var/pnum.js
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
define( function() {
|
||||
"use strict";
|
||||
|
||||
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
|
||||
} );
|
7
bower_components/jquery/src/var/push.js
vendored
Normal file
7
bower_components/jquery/src/var/push.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.push;
|
||||
} );
|
9
bower_components/jquery/src/var/rcssNum.js
vendored
Normal file
9
bower_components/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
bower_components/jquery/src/var/rnothtmlwhite.js
vendored
Normal file
8
bower_components/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://html.spec.whatwg.org/multipage/infrastructure.html#space-character
|
||||
return ( /[^\x20\t\r\n\f]+/g );
|
||||
} );
|
7
bower_components/jquery/src/var/slice.js
vendored
Normal file
7
bower_components/jquery/src/var/slice.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./arr"
|
||||
], function( arr ) {
|
||||
"use strict";
|
||||
|
||||
return arr.slice;
|
||||
} );
|
6
bower_components/jquery/src/var/support.js
vendored
Normal file
6
bower_components/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
bower_components/jquery/src/var/toString.js
vendored
Normal file
7
bower_components/jquery/src/var/toString.js
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
define( [
|
||||
"./class2type"
|
||||
], function( class2type ) {
|
||||
"use strict";
|
||||
|
||||
return class2type.toString;
|
||||
} );
|
Loading…
Add table
Add a link
Reference in a new issue