Skip to content

Commit 8b59acd

Browse files
authoredOct 29, 2023
Fix circleQuestionMark and questionMarkPrefix on Linux (#98)
1 parent 32fb096 commit 8b59acd

File tree

2 files changed

+14
-24
lines changed

2 files changed

+14
-24
lines changed
 

‎index.js

+2-17
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
import process from 'node:process';
21
import isUnicodeSupported from 'is-unicode-supported';
32

4-
const {platform} = process;
5-
63
const common = {
4+
circleQuestionMark: '(?)',
5+
questionMarkPrefix: '(?)',
76
square: '█',
87
squareDarkShade: '▓',
98
squareMediumShade: '▒',
@@ -200,18 +199,6 @@ const common = {
200199

201200
export const mainSymbols = {
202201
...common,
203-
// The main symbols for those do not look that good on Ubuntu.
204-
...(
205-
platform === 'linux'
206-
? {
207-
circleQuestionMark: '?⃝',
208-
questionMarkPrefix: '?⃝',
209-
}
210-
: {
211-
circleQuestionMark: '?',
212-
questionMarkPrefix: '?',
213-
}
214-
),
215202
tick: '✔',
216203
info: 'ℹ',
217204
warning: '⚠',
@@ -263,14 +250,12 @@ export const fallbackSymbols = {
263250
circleCircle: '(○)',
264251
circleCross: '(×)',
265252
circlePipe: '(│)',
266-
circleQuestionMark: '(?)',
267253
radioOn: '(*)',
268254
radioOff: '( )',
269255
checkboxOn: '[×]',
270256
checkboxOff: '[ ]',
271257
checkboxCircleOn: '(×)',
272258
checkboxCircleOff: '( )',
273-
questionMarkPrefix: '?',
274259
pointer: '>',
275260
triangleUpOutline: '∆',
276261
triangleLeft: '◄',

‎test.js

+12-7
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,24 @@ test('figures', t => {
1010
t.is(figures.tick, result('✔', '√'));
1111
});
1212

13-
test('replaceSymbols()', t => {
13+
test('mainSymbols', t => {
14+
t.is(mainSymbols.tick, '✔');
15+
});
16+
17+
test('fallbackSymbols', t => {
18+
t.is(fallbackSymbols.tick, '√');
19+
});
20+
21+
test('replaceSymbols() keep non-figures as is', t => {
1422
t.is(replaceSymbols('foo'), 'foo');
15-
t.is(replaceSymbols('?bar?'), '?bar?');
23+
});
24+
25+
test('replaceSymbols() replace figures', t => {
1626
t.is(replaceSymbols('✔ ✔ ✔'), result('✔ ✔ ✔', '√ √ √'));
1727
t.is(replaceSymbols('✔ ✘\n★ ◼'), result('✔ ✘\n★ ◼', '√ ×\n✶ ■'));
1828
t.is(replaceSymbols('✔ ✘ ★ ◼'), result('✔ ✘ ★ ◼', '√ × ✶ ■'));
1929
});
2030

21-
test('mainSymbols and windowsSymbols', t => {
22-
t.is(mainSymbols.tick, '✔');
23-
t.is(fallbackSymbols.tick, '√');
24-
});
25-
2631
test('figures are non-empty strings', t => {
2732
for (const figure of Object.values(figures)) {
2833
t.true(typeof figure === 'string' && figure.trim() !== '');

0 commit comments

Comments
 (0)