File tree 4 files changed +1
-10
lines changed
4 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
const common = require ( '../../common' ) ;
3
- if ( common . isWOW64 )
3
+ if ( common . isWindows && ( process . env . PROCESSOR_ARCHITEW6432 !== undefined ) )
4
4
common . skip ( 'doesn\'t work on WOW64' ) ;
5
5
6
6
const fs = require ( 'fs' ) ;
Original file line number Diff line number Diff line change @@ -213,11 +213,6 @@ Platform check for SunOS.
213
213
214
214
Platform check for Windows.
215
215
216
- ### isWOW64
217
- * [ < ; boolean>]
218
-
219
- Platform check for Windows 32-bit on Windows 64-bit.
220
-
221
216
### localhostIPv4
222
217
* [ < ; string>]
223
218
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ const isMainThread = (() => {
46
46
} ) ( ) ;
47
47
48
48
const isWindows = process . platform === 'win32' ;
49
- const isWOW64 = isWindows && ( process . env . PROCESSOR_ARCHITEW6432 !== undefined ) ;
50
49
const isAIX = process . platform === 'aix' ;
51
50
const isLinuxPPCBE = ( process . platform === 'linux' ) &&
52
51
( process . arch === 'ppc64' ) &&
@@ -721,7 +720,6 @@ module.exports = {
721
720
isOSX,
722
721
isSunOS,
723
722
isWindows,
724
- isWOW64,
725
723
localIPv6Hosts,
726
724
mustCall,
727
725
mustCallAsync,
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import common from './index.js';
5
5
const {
6
6
isMainThread,
7
7
isWindows,
8
- isWOW64,
9
8
isAIX,
10
9
isLinuxPPCBE,
11
10
isSunOS,
@@ -54,7 +53,6 @@ const {
54
53
export {
55
54
isMainThread ,
56
55
isWindows ,
57
- isWOW64 ,
58
56
isAIX ,
59
57
isLinuxPPCBE ,
60
58
isSunOS ,
You can’t perform that action at this time.
0 commit comments