Skip to content

Commit d2a1f71

Browse files
authoredMay 25, 2023
lib: use existing isWindows variable
PR-URL: #48134 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
1 parent bd829f2 commit d2a1f71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/internal/errors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ const fatalExceptionStackEnhancers = {
787787
// However, fatal error are handled differently and we cannot easily
788788
// highlight them. On Windows, detecting whether a console supports
789789
// ANSI escape sequences is not reliable.
790-
if (process.platform === 'win32') {
790+
if (isWindows) {
791791
const info = internalBinding('os').getOSInformation();
792792
const ver = ArrayPrototypeMap(StringPrototypeSplit(info[2], '.'),
793793
Number);

0 commit comments

Comments
 (0)
Please sign in to comment.