acho
Version:
The Hackable Log
27 lines (23 loc) • 396 B
JavaScript
const figure = {
false: {
info: 'ℹ',
success: '✔',
warning: '⚠',
error: '✖'
},
true: {
info: 'i',
success: '√',
warning: '‼',
error: '×'
}
}
module.exports = {
DECORATE_COUNTER_ZERO_N: 4,
UNMUTED: 'all',
LINE_COLOR: ['gray'],
SYMBOL_KEYWORD: 'symbol',
MUTED: 'muted',
FIGURE: figure[process.platform === 'win32']
}