Einkaufslisten anzeigen, Datenbankeinbindung

This commit is contained in:
Lukas Nowy
2018-10-27 01:10:46 +02:00
parent 5e3c83707f
commit 8e7d96310f
425 changed files with 77158 additions and 3 deletions

View File

@ -0,0 +1,7 @@
define( [
"./fnToString"
], function( fnToString ) {
"use strict";
return fnToString.call( Object );
} );

View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return [];
} );

View File

@ -0,0 +1,6 @@
define( function() {
"use strict";
// [[Class]] -> type pairs
return {};
} );

View File

@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.concat;
} );

View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return window.document;
} );

View File

@ -0,0 +1,7 @@
define( [
"./document"
], function( document ) {
"use strict";
return document.documentElement;
} );

View File

@ -0,0 +1,7 @@
define( [
"./hasOwn"
], function( hasOwn ) {
"use strict";
return hasOwn.toString;
} );

View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return Object.getPrototypeOf;
} );

View File

@ -0,0 +1,7 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
return class2type.hasOwnProperty;
} );

View File

@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.indexOf;
} );

View File

@ -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";
};
} );

View File

@ -0,0 +1,8 @@
define( function() {
"use strict";
return function isWindow( obj ) {
return obj != null && obj === obj.window;
};
} );

View File

@ -0,0 +1,5 @@
define( function() {
"use strict";
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
} );

View File

@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.push;
} );

View File

@ -0,0 +1,9 @@
define( [
"../var/pnum"
], function( pnum ) {
"use strict";
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
} );

View File

@ -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 );
} );

View File

@ -0,0 +1,7 @@
define( [
"./arr"
], function( arr ) {
"use strict";
return arr.slice;
} );

View File

@ -0,0 +1,6 @@
define( function() {
"use strict";
// All support tests are defined in their respective modules.
return {};
} );

View File

@ -0,0 +1,7 @@
define( [
"./class2type"
], function( class2type ) {
"use strict";
return class2type.toString;
} );