mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
19 lines
359 B
JavaScript
19 lines
359 B
JavaScript
|
'use strict';
|
||
|
|
||
|
// Utilities for the tick-processor tests
|
||
|
const {
|
||
|
isWindows,
|
||
|
isSunOS,
|
||
|
isAIX,
|
||
|
isLinuxPPCBE,
|
||
|
isFreeBSD
|
||
|
} = require('../common');
|
||
|
|
||
|
module.exports = {
|
||
|
isCPPSymbolsNotMapped: isWindows ||
|
||
|
isSunOS ||
|
||
|
isAIX ||
|
||
|
isLinuxPPCBE ||
|
||
|
isFreeBSD
|
||
|
};
|