summaryrefslogtreecommitdiff
path: root/cli/js/repl.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/repl.ts')
-rw-r--r--cli/js/repl.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/js/repl.ts b/cli/js/repl.ts
index 581834cfd..f1b0723c8 100644
--- a/cli/js/repl.ts
+++ b/cli/js/repl.ts
@@ -5,18 +5,10 @@ import { stringifyArgs } from "./web/console.ts";
import { startRepl, readline } from "./ops/repl.ts";
import { close } from "./ops/resources.ts";
-/**
- * REPL logging.
- * In favor of console.log to avoid unwanted indentation
- */
function replLog(...args: unknown[]): void {
core.print(stringifyArgs(args) + "\n");
}
-/**
- * REPL logging for errors.
- * In favor of console.error to avoid unwanted indentation
- */
function replError(...args: unknown[]): void {
core.print(stringifyArgs(args) + "\n", true);
}