Clean the Mermaid code and speed up load time

This commit is contained in:
yflory
2019-04-12 17:39:29 +02:00
parent 92d87787c9
commit 86346c567c
3 changed files with 18 additions and 278 deletions

View File

@@ -58139,8 +58139,15 @@ function format(level) {
}
function Log(level) {
level = 5;
this.level = level;
this.trace = function () {};
this.debug = function () {};
this.info = function () {};
this.warn = function () {};
this.error = function () {};
this.log = function () {};
return;
this.log = function () {
var args = Array.prototype.slice.call(arguments);
var level = args.shift();
@@ -59155,4 +59162,4 @@ var isSubstringInArray = function isSubstringInArray(str, arr) {
exports.isSubstringInArray = isSubstringInArray;
},{"./logger":131}]},{},[132])(132)
});
});