Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsapics <gv.nishino@gmail.com>2020-06-29 17:58:19 +0300
committerJames M Snell <jasnell@gmail.com>2020-07-06 17:03:08 +0300
commitee3416b055a3d877251c095981508e275d99f8c2 (patch)
tree613ebc6cdb7fb43c2d63a4089f98deb7d8a35504 /lib/internal/tty.js
parent3975799f260bb1aea77f3e8f4546182b53f2d6b8 (diff)
lib: replace http to https of comment link urls
PR-URL: https://github.com/nodejs/node/pull/34158 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'lib/internal/tty.js')
-rw-r--r--lib/internal/tty.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/tty.js b/lib/internal/tty.js
index 44d51737008..1ebd09193ef 100644
--- a/lib/internal/tty.js
+++ b/lib/internal/tty.js
@@ -125,7 +125,7 @@ function getColorDepth(env = process.env) {
env.NO_COLOR !== undefined ||
// The "dumb" special terminal, as defined by terminfo, doesn't support
// ANSI color control codes.
- // See http://invisible-island.net/ncurses/terminfo.ti.html#toc-_Specials
+ // See https://invisible-island.net/ncurses/terminfo.ti.html#toc-_Specials
env.TERM === 'dumb') {
return COLORS_2;
}