diff options
Diffstat (limited to 'cli/js/repl.ts')
-rw-r--r-- | cli/js/repl.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/js/repl.ts b/cli/js/repl.ts index daa112e1e..8a37d991f 100644 --- a/cli/js/repl.ts +++ b/cli/js/repl.ts @@ -3,16 +3,16 @@ import { exit } from "./ops/os.ts"; import { core } from "./core.ts"; import { version } from "./version.ts"; -import { stringifyArgs } from "./web/console.ts"; +import { inspectArgs } from "./web/console.ts"; import { startRepl, readline } from "./ops/repl.ts"; import { close } from "./ops/resources.ts"; function replLog(...args: unknown[]): void { - core.print(stringifyArgs(args) + "\n"); + core.print(inspectArgs(args) + "\n"); } function replError(...args: unknown[]): void { - core.print(stringifyArgs(args) + "\n", true); + core.print(inspectArgs(args) + "\n", true); } // Error messages that allow users to continue input |