Skip to content

Commit 483ed89

Browse files
authoredJul 1, 2021
Rename main and windows to mainSymbols and windowsSymbols (#78)
1 parent 5aa4c62 commit 483ed89

File tree

5 files changed

+32
-31
lines changed

5 files changed

+32
-31
lines changed
 

‎index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -256,12 +256,12 @@ declare const figures: {
256256
/**
257257
Symbols to use when not running on Windows.
258258
*/
259-
readonly main: FigureSet;
259+
readonly mainSymbols: FigureSet;
260260

261261
/**
262262
Symbols to use when running on Windows.
263263
*/
264-
readonly windows: FigureSet;
264+
readonly windowsSymbols: FigureSet;
265265
} & FigureSet;
266266

267267
export = figures;

‎index.js

+17-16
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ const common = {
198198
lineSlash: '╱'
199199
};
200200

201-
const main = {
201+
const mainSymbols = {
202202
...common,
203203
tick: '✔',
204204
info: 'ℹ',
@@ -238,7 +238,7 @@ const main = {
238238
oneTenth: '⅒'
239239
};
240240

241-
const fallback = {
241+
const windowsSymbols = {
242242
...common,
243243
tick: '√',
244244
info: 'i',
@@ -279,43 +279,44 @@ const fallback = {
279279
};
280280

281281
if (platform === 'linux') {
282-
// The main one doesn't look that good on Ubuntu.
283-
main.circleQuestionMark = '?';
284-
main.questionMarkPrefix = '?';
282+
// The main symbols for those do not look that good on Ubuntu.
283+
mainSymbols.circleQuestionMark = '?';
284+
mainSymbols.questionMarkPrefix = '?';
285285
}
286286

287287
// TODO: Use https://github.com/sindresorhus/is-unicode-supported when targeting Node.js 10.
288-
const figures = platform === 'win32' ? fallback : main;
288+
const shouldUseWindows = platform === 'win32';
289+
const figures = shouldUseWindows ? windowsSymbols : mainSymbols;
289290

290-
const isFallbackFigure = ([key, mainValue]) => figures[key] !== mainValue;
291-
const getFigureRegExp = ([key, mainValue]) => [new RegExp(escapeStringRegexp(mainValue), 'g'), figures[key]];
291+
const isWindowsSymbol = ([key, mainSymbol]) => figures[key] !== mainSymbol;
292+
const getFigureRegExp = ([key, mainSymbol]) => [new RegExp(escapeStringRegexp(mainSymbol), 'g'), windowsSymbols[key]];
292293

293294
let replacements = [];
294295
const getReplacements = () => {
295296
if (replacements.length !== 0) {
296297
return replacements;
297298
}
298299

299-
replacements = Object.entries(main)
300-
.filter(isFallbackFigure)
300+
replacements = Object.entries(mainSymbols)
301+
.filter(isWindowsSymbol)
301302
.map(getFigureRegExp);
302303
return replacements;
303304
};
304305

305306
module.exports = figures;
306307

307-
// On Windows, substitute non-fallback to fallback figures
308+
// On Windows, substitute non-Windows to Windows figures
308309
module.exports.replaceSymbols = string => {
309-
if (figures === main) {
310+
if (!shouldUseWindows) {
310311
return string;
311312
}
312313

313-
for (const [mainRegExp, fallbackValue] of getReplacements()) {
314-
string = string.replace(mainRegExp, fallbackValue);
314+
for (const [figureRegExp, windowsSymbol] of getReplacements()) {
315+
string = string.replace(figureRegExp, windowsSymbol);
315316
}
316317

317318
return string;
318319
};
319320

320-
module.exports.main = main;
321-
module.exports.windows = fallback;
321+
module.exports.mainSymbols = mainSymbols;
322+
module.exports.windowsSymbols = windowsSymbols;

‎index.test-d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {expectType} from 'tsd';
22
import figures = require('.');
3-
import {replaceSymbols, main, windows} from '.';
3+
import {replaceSymbols, mainSymbols, windowsSymbols} from '.';
44

55
expectType<string>(replaceSymbols('✔︎ check'));
66
expectType<string>(figures.tick);
7-
expectType<string>(main.tick);
8-
expectType<string>(windows.tick);
7+
expectType<string>(mainSymbols.tick);
8+
expectType<string>(windowsSymbols.tick);

‎readme.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ console.log(figures.tick);
2929
// On non-Windows OSes: ✔︎
3030
// On Windows: √
3131

32-
console.log(figures.main.tick);
32+
console.log(figures.mainSymbols.tick);
3333
// On all OSes: ✔︎
3434

35-
console.log(figures.windows.tick);
35+
console.log(figures.windowsSymbols.tick);
3636
// On all OSes: √
3737
```
3838

@@ -42,19 +42,19 @@ console.log(figures.windows.tick);
4242

4343
Returns the input with replaced fallback Unicode symbols on Windows.
4444

45-
All the below [figures](#figures) are attached to the main export as shown in the example above.
45+
All the below [figures](#figures) are attached to the default export as shown in the example above.
4646

4747
#### string
4848

4949
Type: `string`
5050

5151
String where the Unicode symbols will be replaced with fallback symbols depending on the OS.
5252

53-
### figures.main
53+
### figures.mainSymbols
5454

5555
Symbols to use when not running on Windows.
5656

57-
### figures.windows
57+
### figures.windowsSymbols
5858

5959
Symbols to use when running on Windows.
6060

‎test.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import test from 'ava';
2-
import figures, {replaceSymbols, main, windows} from '.';
2+
import figures, {replaceSymbols, mainSymbols, windowsSymbols} from '.';
33

4-
const result = (main, windows) => process.platform === 'win32' ? windows : main;
4+
const result = (mainSymbols, windowsSymbols) => process.platform === 'win32' ? windowsSymbols : mainSymbols;
55

6-
const NON_FIGURE_KEYS = new Set(['main', 'windows', 'replaceSymbols']);
6+
const NON_FIGURE_KEYS = new Set(['mainSymbols', 'windowsSymbols', 'replaceSymbols']);
77
const isFigureKey = ([key]) => !NON_FIGURE_KEYS.has(key);
88
const getFigure = ([, figure]) => figure;
99
const getFigures = () => Object.entries(figures).filter(isFigureKey).map(getFigure);
@@ -23,8 +23,8 @@ test('fallbacks', t => {
2323
});
2424

2525
test('exported sets', t => {
26-
t.is(main.tick, '✔');
27-
t.is(windows.tick, '√');
26+
t.is(mainSymbols.tick, '✔');
27+
t.is(windowsSymbols.tick, '√');
2828
});
2929

3030
test('figures are non-empty strings', t => {

0 commit comments

Comments
 (0)
Please sign in to comment.