File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Expand file tree Collapse file tree 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 @@ -32,8 +32,7 @@ const { fixturesDir } = require('./fixtures');
32
32
const tmpdir = require ( './tmpdir' ) ;
33
33
const {
34
34
bits,
35
- hasIntl,
36
- hasSmallICU
35
+ hasIntl
37
36
} = process . binding ( 'config' ) ;
38
37
39
38
const noop = ( ) => { } ;
@@ -715,7 +714,6 @@ module.exports = {
715
714
hasIntl,
716
715
hasCrypto,
717
716
hasIPv6,
718
- hasSmallICU,
719
717
hasMultiLocalhost,
720
718
isAIX,
721
719
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