UNPKG

@naturalcycles/nodejs-lib

Version:
11 lines (10 loc) 312 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hasColors = void 0; const tty = require("tty"); /** * Based on: https://github.com/sindresorhus/yoctocolors/pull/5 * * @experimental */ exports.hasColors = !process.env['NO_COLOR'] && tty.WriteStream.prototype.hasColors();