We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 325dc23 commit fe8c46aCopy full SHA for fe8c46a
test/parallel/test-repl-multiline.js
@@ -5,7 +5,7 @@ const assert = require('assert');
5
const repl = require('repl');
6
const inputStream = new ArrayStream();
7
const outputStream = new ArrayStream();
8
-const input = ['var foo = {', '};', 'foo;'];
+const input = ['const foo = {', '};', 'foo;'];
9
let output = '';
10
11
outputStream.write = (data) => { output += data.replace('\r', ''); };
0 commit comments