'use strict';function_classCallCheck(instance,Constructor){if(!(instanceinstanceofConstructor)){thrownewTypeError("Cannot call a class as a function");}}/** * The MIT License (MIT) * Copyright (c) 2015-present Dmitry Soshnikov <dmitry.soshnikov@gmail.com> */varTable=require('cli-table3');/** * Wrapper class over `cli-table3` with default options preset. */varTablePrinter=functionTablePrinter(options){_classCallCheck(this,TablePrinter);returnnewTable(Object.assign({},options,{style:{head:['blue'],border:['gray']}}));};module.exports=TablePrinter;