Skip to content

Commit

Permalink
Remove unwanted output on fake proc execution
Browse files Browse the repository at this point in the history
  • Loading branch information
cowuake committed May 14, 2024
1 parent 3d66331 commit 693337c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schemius-web/schemius.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ class Schemius {
expression = expression.replace(/\r?\n|\r/g, " ").trim();
if (expression) {
if (Schemius.fakeProcedures[expression]) {
this.echo(Schemius.fakeProcedures[expression]());
Schemius.fakeProcedures[expression]();
} else {
try {
this.echo(evaluate(expression));
Expand Down

0 comments on commit 693337c

Please sign in to comment.