tis-cli前端项目快速搭建命令行工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
436 B

4 years ago
  1. export default function isUnicodeSupported() {
  2. if (process.platform !== 'win32') {
  3. return process.env.TERM !== 'linux'; // Linux console (kernel)
  4. }
  5. return Boolean(process.env.CI) ||
  6. Boolean(process.env.WT_SESSION) || // Windows Terminal
  7. process.env.ConEmuTask === '{cmd::Cmder}' || // ConEmu and cmder
  8. process.env.TERM_PROGRAM === 'vscode' ||
  9. process.env.TERM === 'xterm-256color' ||
  10. process.env.TERM === 'alacritty';
  11. }