1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| "use strict";
| Object.defineProperty(exports, "__esModule", { value: true });
| exports.figures = void 0;
| const is_unicode_supported_1 = require("./is-unicode-supported");
| const FIGURES_MAIN = {
| warning: '⚠',
| cross: '✖',
| arrowDown: '↓',
| tick: '✔',
| arrowRight: '→',
| pointer: '❯',
| checkboxOn: '☒',
| arrowLeft: '←',
| squareSmallFilled: '◼',
| pointerSmall: '›'
| };
| const FIGURES_FALLBACK = {
| ...FIGURES_MAIN,
| warning: '‼',
| cross: '×',
| tick: '√',
| pointer: '>',
| checkboxOn: '[×]',
| squareSmallFilled: '■'
| };
| exports.figures = (0, is_unicode_supported_1.isUnicodeSupported)() ? FIGURES_MAIN : FIGURES_FALLBACK;
|
|