ipull
Version:
The only file downloader you'll ever need. For node.js and the browser, CLI and library for fast and reliable file downloads.
16 lines • 508 B
JavaScript
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