From 8072feb5ca3d36ad4edd665f941ca1eb115d4c57 Mon Sep 17 00:00:00 2001 From: anseki Date: Sun, 22 Feb 2015 22:23:46 +0900 Subject: [PATCH] Change default bufSize: 1024 --- lib/readline-sync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/readline-sync.js b/lib/readline-sync.js index 6b891ee..64b0858 100644 --- a/lib/readline-sync.js +++ b/lib/readline-sync.js @@ -22,7 +22,7 @@ var promptText = '> ', encoding = 'utf8', - bufSize = 256, + bufSize = 1024, useShell = true, print, tempdir, salt = 0; function _readlineSync(display, options) {