From 46e43f4bde4a35785b4997b81e86cd19f046b69b Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 21 Dec 2021 16:52:28 +0100 Subject: Commit --- node_modules/log-symbols/index.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 node_modules/log-symbols/index.js (limited to 'node_modules/log-symbols/index.js') diff --git a/node_modules/log-symbols/index.js b/node_modules/log-symbols/index.js new file mode 100644 index 0000000..247bb59 --- /dev/null +++ b/node_modules/log-symbols/index.js @@ -0,0 +1,20 @@ +'use strict'; +const chalk = require('chalk'); + +const isSupported = process.platform !== 'win32' || process.env.CI || process.env.TERM === 'xterm-256color'; + +const main = { + info: chalk.blue('ℹ'), + success: chalk.green('✔'), + warning: chalk.yellow('⚠'), + error: chalk.red('✖') +}; + +const fallbacks = { + info: chalk.blue('i'), + success: chalk.green('√'), + warning: chalk.yellow('‼'), + error: chalk.red('×') +}; + +module.exports = isSupported ? main : fallbacks; -- cgit