Files
airllm-fork-nodejs/node_modules/ipull/dist/download/transfer-visualize/utils/progressBarIcons.js
2026-02-05 15:27:49 +08:00

16 lines
508 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 isUnicodeSupported from "is-unicode-supported";
import chalk from "chalk";
export const STATUS_ICONS = isUnicodeSupported()
? {
activeDownload: chalk.blue("⏵"),
done: chalk.green("✔"),
failed: chalk.red("✖"),
pending: chalk.yellow("\u25f7")
}
: {
activeDownload: chalk.blue.bold(">"),
done: chalk.green("√"),
failed: chalk.red("×"),
pending: chalk.yellow.bold("-")
};
//# sourceMappingURL=progressBarIcons.js.map