Skip to content

Commit 3302caa

Browse files
authoredOct 29, 2023
Drop support for Node 14 and 16 (#97)
1 parent fd67dc5 commit 3302caa

File tree

3 files changed

+12
-26
lines changed

3 files changed

+12
-26
lines changed
 

‎.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13+
- 21
14+
- 20
1315
- 18
14-
- 16
15-
- 14
1616
os:
1717
- ubuntu-latest
1818
- windows-latest
1919
steps:
20-
- uses: actions/checkout@v3
21-
- uses: actions/setup-node@v3
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- run: npm install

‎index.js

+4-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import process from 'node:process';
2-
import escapeStringRegexp from 'escape-string-regexp';
32
import isUnicodeSupported from 'is-unicode-supported';
43

54
const {platform} = process;
@@ -293,29 +292,17 @@ const shouldUseMain = isUnicodeSupported();
293292
const figures = shouldUseMain ? mainSymbols : fallbackSymbols;
294293
export default figures;
295294

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);
310297

311298
// On terminals which do not support Unicode symbols, substitute them to other symbols
312299
export const replaceSymbols = string => {
313300
if (shouldUseMain) {
314301
return string;
315302
}
316303

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]);
319306
}
320307

321308
return string;

‎package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"type": "module",
1414
"exports": "./index.js",
1515
"engines": {
16-
"node": ">=14"
16+
"node": ">=18"
1717
},
1818
"scripts": {
1919
"test": "xo && ava && tsd"
@@ -35,12 +35,11 @@
3535
"fallback"
3636
],
3737
"dependencies": {
38-
"escape-string-regexp": "^5.0.0",
3938
"is-unicode-supported": "^1.2.0"
4039
},
4140
"devDependencies": {
42-
"ava": "^4.3.1",
43-
"tsd": "^0.22.0",
44-
"xo": "^0.51.0"
41+
"ava": "^5.3.1",
42+
"tsd": "^0.29.0",
43+
"xo": "^0.56.0"
4544
}
4645
}

0 commit comments

Comments
 (0)
Please sign in to comment.