Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/main
/
.
/
test
/
tick-processor
/
util.js
blob: d25a2a7dcb132e1c91498c2215da7b2a0bdcb4bf [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
// Utilities for the tick-processor tests
const
{
isWindows
,
isSunOS
,
isAIX
,
isLinuxPPCBE
,
isFreeBSD
}
=
require
(
'../common'
);
module
.
exports
=
{
isCPPSymbolsNotMapped
:
isWindows
||
isSunOS
||
isAIX
||
isLinuxPPCBE
||
isFreeBSD
};