HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/node_modules/cli-ux/lib/styled/progress.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// 3pp
const cliProgress = require('cli-progress');
function progress(options) {
    // if no options passed, create empty options
    if (!options) {
        options = {};
    }
    // set noTTYOutput for options
    options.noTTYOutput = Boolean(process.env.TERM === 'dumb' || !process.stdin.isTTY);
    return new cliProgress.SingleBar(options);
}
exports.default = progress;