frontend/.pnpm-store/v3/files/6e/9d403f8d3882e4864d758ec514877fb977722657ac242198f44f0f6387563d3baf02068e1df026650517e86cc9bc5222240aa58114c2d33ec7dd0a99a3ed13

20 lines
427 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict';
const chalk = require('chalk');
const isUnicodeSupported = require('is-unicode-supported');
const main = {
info: chalk.blue(''),
success: chalk.green('✔'),
warning: chalk.yellow('⚠'),
error: chalk.red('✖')
};
const fallback = {
info: chalk.blue('i'),
success: chalk.green('√'),
warning: chalk.yellow('‼'),
error: chalk.red('×')
};
module.exports = isUnicodeSupported() ? main : fallback;