File tree 2 files changed +15
-14
lines changed
2 files changed +15
-14
lines changed Original file line number Diff line number Diff line change
1
+ import process from 'node:process' ;
1
2
import escapeStringRegexp from 'escape-string-regexp' ;
2
3
import isUnicodeSupported from 'is-unicode-supported' ;
3
4
@@ -195,21 +196,21 @@ const common = {
195
196
lineUpDownLeftDoubleRightDouble : '╪' ,
196
197
lineCross : '╳' ,
197
198
lineBackslash : '╲' ,
198
- lineSlash : '╱'
199
+ lineSlash : '╱' ,
199
200
} ;
200
201
201
202
export const mainSymbols = {
202
203
...common ,
203
204
// The main symbols for those do not look that good on Ubuntu.
204
205
...(
205
- platform === 'linux' ?
206
- {
206
+ platform === 'linux'
207
+ ? {
207
208
circleQuestionMark : '?⃝' ,
208
- questionMarkPrefix : '?⃝'
209
- } :
210
- {
209
+ questionMarkPrefix : '?⃝' ,
210
+ }
211
+ : {
211
212
circleQuestionMark : '?' ,
212
- questionMarkPrefix : '?'
213
+ questionMarkPrefix : '?' ,
213
214
}
214
215
) ,
215
216
tick : '✔' ,
@@ -245,7 +246,7 @@ export const mainSymbols = {
245
246
nodejs : '⬢' ,
246
247
oneSeventh : '⅐' ,
247
248
oneNinth : '⅑' ,
248
- oneTenth : '⅒'
249
+ oneTenth : '⅒' ,
249
250
} ;
250
251
251
252
export const fallbackSymbols = {
@@ -285,7 +286,7 @@ export const fallbackSymbols = {
285
286
nodejs : '♦' ,
286
287
oneSeventh : '1/7' ,
287
288
oneNinth : '1/9' ,
288
- oneTenth : '1/10'
289
+ oneTenth : '1/10' ,
289
290
} ;
290
291
291
292
const shouldUseMain = isUnicodeSupported ( ) ;
Original file line number Diff line number Diff line change 36
36
],
37
37
"dependencies" : {
38
38
"escape-string-regexp" : " ^5.0.0" ,
39
- "is-unicode-supported" : " ^1.0 .0"
39
+ "is-unicode-supported" : " ^1.2 .0"
40
40
},
41
41
"devDependencies" : {
42
- "ava" : " ^3.15 .0" ,
43
- "tsd" : " ^0.17.0 " ,
44
- "typescript" : " ^4.3.5 " ,
45
- "xo" : " ^0.40.3 "
42
+ "ava" : " ^4.1 .0" ,
43
+ "tsd" : " ^0.19.1 " ,
44
+ "typescript" : " ^4.6.3 " ,
45
+ "xo" : " ^0.48.0 "
46
46
}
47
47
}
You can’t perform that action at this time.
0 commit comments