UNPKG

312 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.hasColors = void 0;
4const tty = require("tty");
5/**
6 * Based on: https://github.com/sindresorhus/yoctocolors/pull/5
7 *
8 * @experimental
9 */
10exports.hasColors = !process.env['NO_COLOR'] && tty.WriteStream.prototype.hasColors();