diff --git a/build/functions/argument-parser.js b/build/functions/argument-parser.js index d279825..03e43ef 100644 --- a/build/functions/argument-parser.js +++ b/build/functions/argument-parser.js @@ -74,7 +74,6 @@ function argumentParser(format, string) { return a.offset < b.offset ? -1 : 1; }); - console.log(format); var regex = new RegExp(format); var matched = regex.exec(string).slice(1); diff --git a/lib/functions/argument-parser.js b/lib/functions/argument-parser.js index dd9aac6..43591c1 100644 --- a/lib/functions/argument-parser.js +++ b/lib/functions/argument-parser.js @@ -62,7 +62,6 @@ export default function argumentParser(format, string) { return a.offset < b.offset ? -1 : 1; }); - console.log(format); const regex = new RegExp(format); const matched = regex.exec(string).slice(1);