File tree Expand file tree Collapse file tree 4 files changed +1
-10
lines changed
Expand file tree Collapse file tree 4 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 11'use strict' ;
22const common = require ( '../../common' ) ;
3- if ( common . isWOW64 )
3+ if ( common . isWindows && ( process . env . PROCESSOR_ARCHITEW6432 !== undefined ) )
44 common . skip ( 'doesn\'t work on WOW64' ) ;
55
66const fs = require ( 'fs' ) ;
Original file line number Diff line number Diff line change @@ -213,11 +213,6 @@ Platform check for SunOS.
213213
214214Platform check for Windows.
215215
216- ### isWOW64
217- * [ < ; boolean>]
218-
219- Platform check for Windows 32-bit on Windows 64-bit.
220-
221216### localhostIPv4
222217* [ < ; string>]
223218
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ const isMainThread = (() => {
4747} ) ( ) ;
4848
4949const isWindows = process . platform === 'win32' ;
50- const isWOW64 = isWindows && ( process . env . PROCESSOR_ARCHITEW6432 !== undefined ) ;
5150const isAIX = process . platform === 'aix' ;
5251const isLinuxPPCBE = ( process . platform === 'linux' ) &&
5352 ( process . arch === 'ppc64' ) &&
@@ -720,7 +719,6 @@ module.exports = {
720719 isOSX,
721720 isSunOS,
722721 isWindows,
723- isWOW64,
724722 localIPv6Hosts,
725723 mustCall,
726724 mustCallAsync,
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import common from './index.js';
55const {
66 isMainThread,
77 isWindows,
8- isWOW64,
98 isAIX,
109 isLinuxPPCBE,
1110 isSunOS,
@@ -54,7 +53,6 @@ const {
5453export {
5554 isMainThread ,
5655 isWindows ,
57- isWOW64 ,
5856 isAIX ,
5957 isLinuxPPCBE ,
6058 isSunOS ,
You can’t perform that action at this time.
0 commit comments