first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
11
node_modules/listr2/dist/utils/is-unicode-supported.js
generated
vendored
Normal file
11
node_modules/listr2/dist/utils/is-unicode-supported.js
generated
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.isUnicodeSupported = void 0;
|
||||
function isUnicodeSupported() {
|
||||
if (process.platform !== 'win32') {
|
||||
return true;
|
||||
}
|
||||
/* istanbul ignore next */
|
||||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue