|
1 | 1 | import process from 'node:process';
|
2 |
| -import escapeStringRegexp from 'escape-string-regexp'; |
3 | 2 | import isUnicodeSupported from 'is-unicode-supported';
|
4 | 3 |
|
5 | 4 | const {platform} = process;
|
@@ -293,29 +292,17 @@ const shouldUseMain = isUnicodeSupported();
|
293 | 292 | const figures = shouldUseMain ? mainSymbols : fallbackSymbols;
|
294 | 293 | export default figures;
|
295 | 294 |
|
296 |
| -const isFallbackSymbol = (key, mainSymbol) => fallbackSymbols[key] !== mainSymbol; |
297 |
| -const getFigureRegExp = (key, mainSymbol) => [new RegExp(escapeStringRegexp(mainSymbol), 'g'), fallbackSymbols[key]]; |
298 |
| - |
299 |
| -let replacements = []; |
300 |
| -const getReplacements = () => { |
301 |
| - if (replacements.length > 0) { |
302 |
| - return replacements; |
303 |
| - } |
304 |
| - |
305 |
| - replacements = Object.entries(mainSymbols) |
306 |
| - .filter(([key, mainSymbol]) => isFallbackSymbol(key, mainSymbol)) |
307 |
| - .map(([key, mainSymbol]) => getFigureRegExp(key, mainSymbol)); |
308 |
| - return replacements; |
309 |
| -}; |
| 295 | +const replacements = Object.entries(mainSymbols) |
| 296 | + .filter(([key, mainSymbol]) => fallbackSymbols[key] !== mainSymbol); |
310 | 297 |
|
311 | 298 | // On terminals which do not support Unicode symbols, substitute them to other symbols
|
312 | 299 | export const replaceSymbols = string => {
|
313 | 300 | if (shouldUseMain) {
|
314 | 301 | return string;
|
315 | 302 | }
|
316 | 303 |
|
317 |
| - for (const [figureRegExp, fallbackSymbol] of getReplacements()) { |
318 |
| - string = string.replace(figureRegExp, fallbackSymbol); |
| 304 | + for (const [key, mainSymbol] of replacements) { |
| 305 | + string = string.replaceAll(mainSymbol, fallbackSymbols[key]); |
319 | 306 | }
|
320 | 307 |
|
321 | 308 | return string;
|
|
0 commit comments