StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/log-utils/index.js

224 lines
3.3 KiB

/*!
* log-utils <https://github.com/jonschlinkert/log-utils>
*
* Copyright (c) 2016, Jon Schlinkert.
* Licensed under the MIT License.
*/
'use strict';
var readline = require('readline');
var log = require('ansi-colors');
var fn = require;
require = log;
/**
* Utils
*/
require('error-symbol');
require('info-symbol');
require('success-symbol', 'check');
require('warning-symbol');
require('time-stamp');
require = fn;
/**
* Expose `colors` and `symbols`
*/
log.colors = require('ansi-colors');
log.symbol = {};
/**
* Error symbol.
*
* ```js
* console.log(log.symbol.error);
* //=> ✖
* ```
* @name .symbol.error
* @api public
*/
getter(log.symbol, 'error', function() {
return log.errorSymbol;
});
/**
* Info symbol.
*
* ```js
* console.log(log.symbol.info);
* //=> ℹ
* ```
* @name .symbol.info
* @api public
*/
getter(log.symbol, 'info', function() {
return log.infoSymbol;
});
/**
* Success symbol.
*
* ```js
* console.log(log.symbol.success);
* //=> ✔
* ```
* @name .symbol.success
* @api public
*/
getter(log.symbol, 'success', function() {
return log.check;
});
/**
* Warning symbol.
*
* ```js
* console.log(log.symbol.warning);
* //=> ⚠
* ```
* @name .symbol.warning
* @api public
*/
getter(log.symbol, 'warning', function() {
return log.warningSymbol;
});
/**
* Get a red error symbol.
*
* ```js
* console.log(log.error);
* //=> ✖
* ```
* @name .error
* @api public
*/
getter(log, 'error', function() {
return log.red(log.symbol.error);
});
/**
* Get a cyan info symbol.
*
* ```js
* console.log(log.info);
* //=> ℹ
* ```
* @name .info
* @api public
*/
getter(log, 'info', function() {
return log.cyan(log.symbol.info);
});
/**
* Get a green success symbol.
*
* ```js
* console.log(log.success);
* //=> ✔
* ```
* @name .success
* @api public
*/
getter(log, 'success', function() {
return log.green(log.symbol.success);
});
/**
* Get a yellow warning symbol.
*
* ```js
* console.log(log.warning);
* //=> ⚠
* ```
* @name .warning
* @api public
*/
getter(log, 'warning', function() {
return log.yellow(log.symbol.warning);
});
/**
* Get a formatted timestamp.
*
* ```js
* console.log(log.timestamp);
* //=> [15:27:46]
* ```
* @name .timestamp
* @api public
*/
getter(log, 'timestamp', function() {
return '[' + log.gray(log.timeStamp('HH:mm:ss')) + ']';
});
/**
* Log a white success message prefixed by a green check.
*
* ```js
* log.ok('Alright!');
* //=> '✔ Alright!'
* ```
* @name .ok
* @api public
*/
log.ok = require('log-ok');
/**
* Make the given text bold and underlined.
*
* ```js
* console.log(log.heading('foo'));
* // or
* console.log(log.heading('foo', 'bar'));
* ```
* @name .heading
* @api public
*/
log.heading = function() {
var args = [].concat.apply([], [].slice.call(arguments));
var len = args.length;
var idx = -1;
var headings = [];
while (++idx < len) {
var str = args[idx];
if (typeof str === 'string') {
headings.push(log.bold(log.underline(str)));
}
}
return headings.join(' ');
};
/**
* Utility for defining a getter
*/
function getter(obj, prop, fn) {
Object.defineProperty(obj, prop, {
configurable: true,
enumerable: true,
get: fn
});
}
/**
* Expose `log`
*/
module.exports = log;