First upload version 0.0.1

This commit is contained in:
Neyra
2026-02-05 15:27:49 +08:00
commit 8e9b7201ed
4182 changed files with 593136 additions and 0 deletions

14
node_modules/log-symbols/symbols.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
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 ? '✖' : '×');