From 543fdfdfd3ad38afb31dd0a0f94c39d354414d7a Mon Sep 17 00:00:00 2001 From: Abhishek Agarwal Date: Fri, 15 Feb 2019 00:23:13 +0530 Subject: [PATCH] lib: converted element to lowercase in tty.js Converted the first element "Eterm" in TERM_ENVS array to "eterm" Fixes: https://github.com/nodejs/node/issues/26077 --- lib/internal/tty.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/tty.js b/lib/internal/tty.js index 1e60909f66a636..ea0bea4bfac94c 100644 --- a/lib/internal/tty.js +++ b/lib/internal/tty.js @@ -37,7 +37,7 @@ const COLORS_16m = 24; // distribution of this file, with or without modification, are permitted // provided the copyright notice and this notice are preserved. const TERM_ENVS = [ - 'Eterm', + 'eterm', 'cons25', 'console', 'cygwin',