From 2706554f8ea7ae5df41ad536e8d5e8ba05b352e9 Mon Sep 17 00:00:00 2001 From: phillbooth Date: Wed, 23 Jul 2025 22:45:57 +0100 Subject: [PATCH] Update repl.js Octal escape sequences are not allowed. Use the syntax '\x1b' --- tools/repl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/repl.js b/tools/repl.js index f3c5266810e..2b5f493d7d4 100644 --- a/tools/repl.js +++ b/tools/repl.js @@ -19,7 +19,7 @@ const repl = require('repl'); const firebase = require('../packages/firebase'); function clearTerminal() { - return process.stdout.write('\033c'); + return process.stdout.write('\x1bc'); } function giveContext() {