Partie-2/node_modules/listr2/dist/utils/is-unicode-supported.js
Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

11 lines
455 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isUnicodeSupported = void 0;
function isUnicodeSupported() {
if (process.platform !== 'win32') {
return true;
}
return (Boolean(process.env.CI) || Boolean(process.env.WT_SESSION) || process.env.TERM_PROGRAM === 'vscode' || process.env.TERM === 'xterm-256color' || process.env.TERM === 'alacritty');
}
exports.isUnicodeSupported = isUnicodeSupported;