Searched refs:getOptionValue (Results 1 - 25 of 51) sorted by relevance
123
/third_party/node/lib/internal/process/ |
H A D | pre_execution.js | 16 getOptionValue, 181 configurable: getOptionValue('--build-snapshot'), 231 const value = getOptionValue(option); 248 if (getOptionValue('--warnings') && 266 getOptionValue('--no-experimental-fetch')) { 316 !getOptionValue('--experimental-global-webcrypto')) { 338 !getOptionValue('--experimental-test-coverage')) { 348 !getOptionValue('--experimental-global-customevent')) { 356 if (!getOptionValue('--trace-sigint')) { 379 if (getOptionValue(' [all...] |
H A D | warning.js | 41 if (options.getOptionValue('--diagnostic-dir') !== '') { 42 warningFile = options.getOptionValue('--diagnostic-dir'); 44 if (options.getOptionValue('--redirect-warnings') !== '') { 45 warningFile = options.getOptionValue('--redirect-warnings');
|
/third_party/node/lib/internal/modules/ |
H A D | run_main.js | 7 const { getOptionValue } = require('internal/options'); 15 const defaultType = getOptionValue('--experimental-default-type'); 19 if (getOptionValue('--preserve-symlinks-main')) { return; } 29 const preserveSymlinksMain = getOptionValue('--preserve-symlinks-main'); 52 if (getOptionValue('--experimental-default-type') === 'module') { return true; } 58 const userLoaders = getOptionValue('--experimental-loader'); 63 const userImports = getOptionValue('--import'); 68 getOptionValue('--experimental-specifier-resolution'); 79 return pkg.data?.type === 'module' || getOptionValue('--experimental-default-type') === 'module';
|
H A D | helpers.js | 29 const { getOptionValue } = require('internal/options'); 67 const userConditions = getOptionValue('--conditions'); 68 const noAddons = getOptionValue('--no-addons');
|
H A D | package_json_reader.js | 121 const { getOptionValue } = require('internal/options'); 122 manifest = getOptionValue('--experimental-policy') ?
|
/third_party/node/lib/internal/main/ |
H A D | check_syntax.js | 7 const { getOptionValue } = require('internal/options'); 52 const { getOptionValue } = require('internal/options'); 53 const hasModulePreImport = getOptionValue('--import').length > 0; 66 isModule = getOptionValue('--input-type') === 'module' || 67 (getOptionValue('--experimental-default-type') === 'module' && getOptionValue('--input-type') !== 'commonjs');
|
H A D | test_runner.js | 6 const { getOptionValue } = require('internal/options'); 27 let concurrency = getOptionValue('--test-concurrency') || true; 38 const shardOption = getOptionValue('--test-shard'); 65 watch: getOptionValue('--watch'),
|
H A D | watch_mode.js | 17 const { getOptionValue } = require('internal/options'); 34 const kShouldFilterModules = getOptionValue('--watch-path').length === 0; 35 const kWatchedPaths = ArrayPrototypeMap(getOptionValue('--watch-path'), (path) => resolve(path)); 36 const kPreserveOutput = getOptionValue('--watch-preserve-output');
|
H A D | mksnapshot.js | 19 getOptionValue, 148 if (getOptionValue('--inspect-brk')) {
|
/third_party/node/lib/ |
H A D | tls.js | 62 const { getOptionValue } = require('internal/options'); 77 exports.DEFAULT_CIPHERS = getOptionValue('--tls-cipher-list'); 81 if (getOptionValue('--tls-min-v1.0')) 83 else if (getOptionValue('--tls-min-v1.1')) 85 else if (getOptionValue('--tls-min-v1.2')) 87 else if (getOptionValue('--tls-min-v1.3')) 92 if (getOptionValue('--tls-max-v1.3')) 94 else if (getOptionValue('--tls-max-v1.2'))
|
H A D | crypto.js | 42 const { getOptionValue } = require('internal/options'); 245 return getOptionValue('--force-fips') ? 1 : getFipsCrypto(); 249 if (getOptionValue('--force-fips')) { 264 const value = getOptionValue('--tls-cipher-list'); 293 if (getOptionValue('--pending-deprecation')) {
|
H A D | http.js | 143 const { getOptionValue } = require('internal/options'); 144 maxHeaderSize = getOptionValue('--max-http-header-size');
|
H A D | _http_common.js | 32 const { getOptionValue } = require('internal/options'); 33 const insecureHTTPParser = getOptionValue('--insecure-http-parser');
|
/third_party/node/test/parallel/ |
H A D | test-pending-deprecation.js | 5 // `require('internal/options').getOptionValue('--pending-deprecation')` 18 const { getOptionValue } = require('internal/options'); 21 return `${name} did not affect getOptionValue('--pending-deprecation')`; 28 getOptionValue('--pending-deprecation'), 36 getOptionValue('--pending-deprecation'),
|
H A D | test-options-binding.js | 7 const { options, aliases, getOptionValue } = require('internal/options'); 17 common.mustNotCall('`getOptionValue` must not call user-mutable method'); 18 assert.strictEqual(getOptionValue('--expose-internals'), true);
|
/third_party/node/lib/internal/modules/esm/ |
H A D | get_format.js | 12 const { getOptionValue } = require('internal/options'); 21 getOptionValue('--experimental-network-imports'); 23 getOptionValue('--experimental-specifier-resolution'); 24 const defaultTypeFlag = getOptionValue('--experimental-default-type');
|
H A D | utils.js | 25 const { getOptionValue } = require('internal/options'); 61 const userConditions = getOptionValue('--conditions'); 62 const noAddons = getOptionValue('--no-addons'); 213 const customLoaderURLs = getOptionValue('--experimental-loader');
|
H A D | initialize_import_meta.js | 3 const { getOptionValue } = require('internal/options'); 4 const experimentalImportMetaResolve = getOptionValue('--experimental-import-meta-resolve');
|
H A D | load.js | 12 const { getOptionValue } = require('internal/options'); 15 const policy = getOptionValue('--experimental-policy') ? 19 getOptionValue('--experimental-network-imports');
|
H A D | loader.js | 22 const { getOptionValue } = require('internal/options'); 134 if (getOptionValue('--experimental-network-imports')) { 139 getOptionValue('--experimental-specifier-resolution') === 'node' 304 getOptionValue('--inspect-brk') 523 const userLoaderPaths = getOptionValue('--experimental-loader');
|
H A D | formats.js | 7 const { getOptionValue } = require('internal/options'); 11 const experimentalWasmModules = getOptionValue('--experimental-wasm-modules');
|
H A D | resolve.js | 28 const { getOptionValue } = require('internal/options'); 29 const pendingDeprecation = getOptionValue('--pending-deprecation'); 31 const policy = getOptionValue('--experimental-policy') ? 35 const preserveSymlinks = getOptionValue('--preserve-symlinks'); 36 const preserveSymlinksMain = getOptionValue('--preserve-symlinks-main'); 38 getOptionValue('--experimental-network-imports'); 39 const inputTypeFlag = getOptionValue('--input-type'); 295 if (getOptionValue('--experimental-specifier-resolution') === 'node') {
|
/third_party/node/lib/internal/test_runner/ |
H A D | utils.js | 28 const { getOptionValue } = require('internal/options'); 190 const isTestRunner = getOptionValue('--test'); 191 const coverage = getOptionValue('--experimental-test-coverage'); 207 destinations = getOptionValue('--test-reporter-destination'); 208 reporters = getOptionValue('--test-reporter'); 230 const testNamePatternFlag = getOptionValue('--test-name-pattern'); 231 testOnlyFlag = getOptionValue('--test-only');
|
/third_party/node/lib/internal/ |
H A D | options.js | 44 function getOptionValue(optionName) { function 74 getOptionValue,
|
H A D | vm.js | 26 getOptionValue, 55 if (!getOptionValue('--experimental-vm-modules')) {
|
Completed in 8 milliseconds
123