Вход Регистрация
Файл: error-kitty/node_modules/chalk/node_modules/has-color/index.js
Строк: 23
<?php
'use strict';
module.exports = (function () {
    if (
process.argv.indexOf('--no-color') !== -1) {
        return 
false;
    }

    if (
process.argv.indexOf('--color') !== -1) {
        return 
true;
    }

    if (
process.stdout && !process.stdout.isTTY) {
        return 
false;
    }

    if (
process.platform === 'win32') {
        return 
true;
    }

    if (
'COLORTERM' in process.env) {
        return 
true;
    }

    if (
process.env.TERM === 'dumb') {
        return 
false;
    }

    if (/^
screen|^xterm|^vt100|color|ansi|cygwin|linux/i.test(process.env.TERM)) {
        return 
true;
    }

    return 
false;
})();
?>
Онлайн: 1
Реклама