mirror of
https://github.com/nodejs/node.git
synced 2025-08-17 06:38:47 +02:00

This reverts commit 22cb99d073
.
PR-URL: https://github.com/nodejs/node/pull/53183
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
110 lines
1.8 KiB
JavaScript
110 lines
1.8 KiB
JavaScript
import { createRequire } from 'module';
|
|
|
|
const require = createRequire(import.meta.url);
|
|
const common = require('./index.js');
|
|
|
|
const {
|
|
allowGlobals,
|
|
buildType,
|
|
canCreateSymLink,
|
|
checkoutEOL,
|
|
childShouldThrowAndAbort,
|
|
createZeroFilledFile,
|
|
enoughTestMem,
|
|
expectsError,
|
|
expectWarning,
|
|
getArrayBufferViews,
|
|
getBufferSources,
|
|
getCallSite,
|
|
getTTYfd,
|
|
hasCrypto,
|
|
hasIntl,
|
|
hasIPv6,
|
|
hasMultiLocalhost,
|
|
isAIX,
|
|
isAlive,
|
|
isDumbTerminal,
|
|
isFreeBSD,
|
|
isIBMi,
|
|
isLinux,
|
|
isLinuxPPCBE,
|
|
isMainThread,
|
|
isOpenBSD,
|
|
isOSX,
|
|
isSunOS,
|
|
isWindows,
|
|
localIPv6Hosts,
|
|
mustCall,
|
|
mustCallAtLeast,
|
|
mustNotCall,
|
|
mustNotMutateObjectDeep,
|
|
mustSucceed,
|
|
nodeProcessAborted,
|
|
opensslCli,
|
|
parseTestFlags,
|
|
PIPE,
|
|
platformTimeout,
|
|
printSkipMessage,
|
|
runWithInvalidFD,
|
|
skip,
|
|
skipIf32Bits,
|
|
skipIfDumbTerminal,
|
|
skipIfEslintMissing,
|
|
skipIfInspectorDisabled,
|
|
spawnPromisified,
|
|
} = common;
|
|
|
|
const getPort = () => common.PORT;
|
|
|
|
export {
|
|
allowGlobals,
|
|
buildType,
|
|
canCreateSymLink,
|
|
checkoutEOL,
|
|
childShouldThrowAndAbort,
|
|
createRequire,
|
|
createZeroFilledFile,
|
|
enoughTestMem,
|
|
expectsError,
|
|
expectWarning,
|
|
getArrayBufferViews,
|
|
getBufferSources,
|
|
getCallSite,
|
|
getPort,
|
|
getTTYfd,
|
|
hasCrypto,
|
|
hasIntl,
|
|
hasIPv6,
|
|
hasMultiLocalhost,
|
|
isAIX,
|
|
isAlive,
|
|
isDumbTerminal,
|
|
isFreeBSD,
|
|
isIBMi,
|
|
isLinux,
|
|
isLinuxPPCBE,
|
|
isMainThread,
|
|
isOpenBSD,
|
|
isOSX,
|
|
isSunOS,
|
|
isWindows,
|
|
localIPv6Hosts,
|
|
mustCall,
|
|
mustCallAtLeast,
|
|
mustNotCall,
|
|
mustNotMutateObjectDeep,
|
|
mustSucceed,
|
|
nodeProcessAborted,
|
|
opensslCli,
|
|
parseTestFlags,
|
|
PIPE,
|
|
platformTimeout,
|
|
printSkipMessage,
|
|
runWithInvalidFD,
|
|
skip,
|
|
skipIf32Bits,
|
|
skipIfDumbTerminal,
|
|
skipIfEslintMissing,
|
|
skipIfInspectorDisabled,
|
|
spawnPromisified,
|
|
};
|