File tree 3 files changed +4
-9
lines changed
3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -158,11 +158,6 @@ Indicates `hasCrypto` and `crypto` with fips.
158
158
159
159
Indicates if [ internationalization] is supported.
160
160
161
- ### hasSmallICU
162
- * [ < ; boolean>]
163
-
164
- Indicates ` hasIntl ` and ` small-icu ` are supported.
165
-
166
161
### hasIPv6
167
162
* [ < ; boolean>]
168
163
Original file line number Diff line number Diff line change @@ -33,8 +33,7 @@ const { fixturesDir } = require('./fixtures');
33
33
const tmpdir = require ( './tmpdir' ) ;
34
34
const {
35
35
bits,
36
- hasIntl,
37
- hasSmallICU
36
+ hasIntl
38
37
} = process . binding ( 'config' ) ;
39
38
40
39
const noop = ( ) => { } ;
@@ -712,7 +711,6 @@ module.exports = {
712
711
hasIntl,
713
712
hasCrypto,
714
713
hasIPv6,
715
- hasSmallICU,
716
714
hasMultiLocalhost,
717
715
isAIX,
718
716
isAlive,
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
const common = require ( '../common' ) ;
3
3
const os = require ( 'os' ) ;
4
- if ( ! ( common . hasIntl && common . hasSmallICU ) )
4
+
5
+ const { hasSmallICU } = process . binding ( 'config' ) ;
6
+ if ( ! ( common . hasIntl && hasSmallICU ) )
5
7
common . skip ( 'missing Intl' ) ;
6
8
7
9
const assert = require ( 'assert' ) ;
You can’t perform that action at this time.
0 commit comments