From 04633eeeb93c5a86a6635940eb4f34a7839ada11 Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Mon, 3 Jun 2019 00:48:53 +0200 Subject: readline: error on falsy values for callback It was intended, according to in-test comments and common behaviour, that callbacks be either `undefined` or a function, but falsy values were being accepted as meaning "no callback". PR-URL: https://github.com/nodejs/node/pull/28109 Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott Reviewed-By: Colin Ihrig --- lib/readline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/readline.js') diff --git a/lib/readline.js b/lib/readline.js index c8d0a8040a..5cc2293882 100644 --- a/lib/readline.js +++ b/lib/readline.js @@ -121,7 +121,7 @@ function Interface(input, output, completer, terminal) { input = input.input; } - if (completer && typeof completer !== 'function') { + if (completer !== undefined && typeof completer !== 'function') { throw new ERR_INVALID_OPT_VALUE('completer', completer); } -- cgit v1.2.3