mirror of
https://github.com/develop202/migu_video.git
synced 2025-12-16 23:09:37 +08:00
29 lines
502 B
JavaScript
29 lines
502 B
JavaScript
|
|
function printRed(msg) {
|
|
console.log('\x1B[31m%s\x1B[0m', msg)
|
|
}
|
|
|
|
function printGreen(msg) {
|
|
console.log('\x1B[32m%s\x1B[0m', msg)
|
|
}
|
|
|
|
function printYellow(msg) {
|
|
console.log('\x1B[33m%s\x1B[0m', msg)
|
|
}
|
|
|
|
function printBlue(msg) {
|
|
console.log('\x1B[34m%s\x1B[0m', msg)
|
|
}
|
|
|
|
function printMagenta(msg) {
|
|
console.log('\x1B[35m%s\x1B[0m', msg)
|
|
}
|
|
|
|
function printGrey(msg) {
|
|
console.log('\x1B[2m%s\x1B[0m', msg)
|
|
}
|
|
|
|
export {
|
|
printGreen, printBlue, printRed, printYellow, printMagenta, printGrey
|
|
}
|