Files
n8n-nodes-gwezz-changdunovel/node_modules/log-symbols/symbols.js
2025-10-26 23:10:15 +08:00

15 lines
426 B
JavaScript
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.

import {
blue,
green,
yellow,
red,
} from 'yoctocolors';
import isUnicodeSupported from 'is-unicode-supported';
const _isUnicodeSupported = isUnicodeSupported();
export const info = blue(_isUnicodeSupported ? '' : 'i');
export const success = green(_isUnicodeSupported ? '✔' : '√');
export const warning = yellow(_isUnicodeSupported ? '⚠' : '‼');
export const error = red(_isUnicodeSupported ? '✖' : '×');