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.
158158
159159Indicates if [ internationalization] is supported.
160160
161- ### hasSmallICU
162- * [ < ; boolean>]
163-
164- Indicates ` hasIntl ` and ` small-icu ` are supported.
165-
166161### hasIPv6
167162* [ < ; boolean>]
168163
Original file line number Diff line number Diff line change @@ -33,8 +33,7 @@ const { fixturesDir } = require('./fixtures');
3333const tmpdir = require ( './tmpdir' ) ;
3434const {
3535 bits,
36- hasIntl,
37- hasSmallICU
36+ hasIntl
3837} = process . binding ( 'config' ) ;
3938
4039const noop = ( ) => { } ;
@@ -712,7 +711,6 @@ module.exports = {
712711 hasIntl,
713712 hasCrypto,
714713 hasIPv6,
715- hasSmallICU,
716714 hasMultiLocalhost,
717715 isAIX,
718716 isAlive,
Original file line number Diff line number Diff line change 11'use strict' ;
22const common = require ( '../common' ) ;
33const os = require ( 'os' ) ;
4- if ( ! ( common . hasIntl && common . hasSmallICU ) )
4+
5+ const { hasSmallICU } = process . binding ( 'config' ) ;
6+ if ( ! ( common . hasIntl && hasSmallICU ) )
57 common . skip ( 'missing Intl' ) ;
68
79const assert = require ( 'assert' ) ;
You can’t perform that action at this time.
0 commit comments