@naturalcycles/nodejs-lib
Version:
Standard library for Node.js
11 lines (10 loc) • 312 B
JavaScript
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();
;