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

24
node_modules/base64-url/index.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
'use strict';
var base64url = module.exports;
base64url.unescape = function unescape (str) {
return (str + Array(5 - str.length % 4)
.join('='))
.replace(/\-/g, '+')
.replace(/_/g, '/');
};
base64url.escape = function escape (str) {
return str.replace(/\+/g, '-')
.replace(/\//g, '_')
.replace(/=/g, '');
};
base64url.encode = function encode (str) {
return this.escape(new Buffer(str).toString('base64'));
};
base64url.decode = function decode (str) {
return new Buffer(this.unescape(str), 'base64').toString();
};