Skip to content

Commit

Permalink
feat: remove console.time
Browse files Browse the repository at this point in the history
  • Loading branch information
Bikossor committed Jul 12, 2022
1 parent 396828b commit 7451473
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/parser/JavaScript-rudus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import {
between,
} from "rudus";

console.time();

const betweenDoubleQuotes = between(string('"'));
const optionalWhitespace = optional(whitespace());

Expand Down Expand Up @@ -45,8 +43,6 @@ const variableParser = sequenceOf([

const parserResult = variableParser.run("const isCool = null");

console.timeEnd();

if (parserResult.isError) {
console.log(parserResult.errorMessage);
} else {
Expand Down

0 comments on commit 7451473

Please sign in to comment.