Skip to content

Commit 2706554

Browse files
authored
Update repl.js
Octal escape sequences are not allowed. Use the syntax '\x1b'
1 parent a4897a6 commit 2706554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/repl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const repl = require('repl');
1919
const firebase = require('../packages/firebase');
2020

2121
function clearTerminal() {
22-
return process.stdout.write('\033c');
22+
return process.stdout.write('\x1bc');
2323
}
2424

2525
function giveContext() {

0 commit comments

Comments
 (0)