Erste Funktionalität der Menükarte per GET/POST, keine API; Umstrukturierung der Tabelle als Bootstrap-div; HTML/CSS-Cleanup

This commit is contained in:
Sebastian Seedorf
2016-03-25 13:33:42 +01:00
parent 92a5ff8eda
commit f99271ee01
202 changed files with 25173 additions and 853 deletions

14
node_modules/repeat-string/index.js generated vendored
View File

@@ -7,6 +7,13 @@
'use strict';
/**
* Results cache
*/
var res = '';
var cache;
/**
* Expose `repeat`
*/
@@ -36,6 +43,7 @@ function repeat(str, num) {
throw new TypeError('repeat-string expects a string.');
}
// cover common, quick use cases
if (num === 1) return str;
if (num === 2) return str + str;
@@ -58,9 +66,3 @@ function repeat(str, num) {
return res.substr(0, max);
}
/**
* Results cache
*/
var res = '';
var cache;