Searched refs:pathToFileURL (Results 1 – 25 of 40) sorted by relevance
12
/third_party/node/test/parallel/ |
D | test-url-pathtofileurl.js | 7 const fileURL = url.pathToFileURL('test/').href; 13 const fileURL = url.pathToFileURL('test\\').href; 22 const fileURL = url.pathToFileURL('test/%').href; 31 assert.throws(() => url.pathToFileURL('\\\\\\no-server'), { 36 assert.throws(() => url.pathToFileURL('\\\\host'), { 41 const fileURL = url.pathToFileURL('\\\\nas\\share\\path.txt').href; 143 const actual = url.pathToFileURL(path).href;
|
D | test-policy-parse-integrity.js | 13 const { pathToFileURL } = require('url'); 33 const depURL = pathToFileURL(depFilepath); 39 const tmpdirURL = pathToFileURL(tmpdirPath); 45 const packageURL = pathToFileURL(packageFilepath);
|
D | test-directory-import.js | 6 const { pathToFileURL } = require('url'); 11 import(pathToFileURL(fixtures.path('packages', 'main'))),
|
D | test-inspector-multisession-js.js | 10 const { pathToFileURL } = require('url'); 38 'url': pathToFileURL(path.resolve(__dirname, __filename)).toString(),
|
D | test-fs-whatwg-url.js | 10 function pathToFileURL(p) { function 19 const url = pathToFileURL(p);
|
D | test-child-process-cwd.js | 30 const { pathToFileURL, URL } = require('url'); 91 testCwd({ cwd: pathToFileURL(tmpdir.path) }, 'number', 0, tmpdir.path);
|
D | test-inspector-bindings.js | 7 const { pathToFileURL } = require('url'); 89 'url': pathToFileURL(path.resolve(__dirname, __filename)).toString(),
|
D | test-source-map-enable.js | 11 const { pathToFileURL } = require('url'); 92 dirname(pathToFileURL( 113 dirname(pathToFileURL(
|
D | test-inspector-connect-main-thread.js | 9 const { pathToFileURL } = require('url'); 128 'url': pathToFileURL(path.resolve(__dirname, __filename)).toString(),
|
/third_party/node/test/sequential/ |
D | test-inspector-break-when-eval.js | 7 const { pathToFileURL } = require('url'); 37 'url': pathToFileURL(script).toString(), 52 await session.waitForBreakOnLine(9, pathToFileURL(script).toString());
|
D | test-inspector-exception.js | 9 const { pathToFileURL } = require('url'); 32 await session.waitForBreakOnLine(21, pathToFileURL(script).toString());
|
/third_party/node/test/node-api/test_policy/ |
D | test_policy.js | 12 const { pathToFileURL } = require('url'); 25 const depURL = pathToFileURL(depFilepath); 27 const tmpdirURL = pathToFileURL(tmpdir.path);
|
/third_party/node/test/es-module/ |
D | test-esm-tla.mjs | 4 import { pathToFileURL } from 'url'; 6 import(pathToFileURL(fixtures.path('/es-modules/tla/parent.mjs')))
|
D | test-esm-undefined-cjs-global-like-variables.js | 5 const { pathToFileURL } = require('url'); 21 const pkgUrl = pathToFileURL(fixtures.path('/es-modules/package-type-module/'));
|
/third_party/node/lib/internal/modules/ |
D | package_json_reader.js | 5 const { pathToFileURL } = require('url'); 33 const jsonURL = pathToFileURL(jsonPath);
|
D | run_main.js | 48 const { pathToFileURL } = require('internal/url'); 51 pathToFileURL(mainPath).href : mainPath;
|
/third_party/node/lib/internal/main/ |
D | check_syntax.js | 14 const { pathToFileURL } = require('url'); 56 const { url } = defaultResolve(pathToFileURL(filename).toString());
|
/third_party/node/lib/internal/process/ |
D | esm_loader.js | 10 const { pathToFileURL } = require('internal/url'); 57 await ESMLoader.import(userLoader, pathToFileURL(cwd).href);
|
D | execution.js | 59 const { pathToFileURL } = require('url'); 69 const baseUrl = pathToFileURL(module.filename).href;
|
/third_party/node/lib/internal/modules/cjs/ |
D | loader.js | 78 const { pathToFileURL, fileURLToPath, isURLInstance } = require('internal/url'); 427 pathToFileURL(pkgPath + '/package.json'), expansion, pkg, 428 pathToFileURL(parentPath), cjsConditions), request, parentPath, pkgPath); 451 pathToFileURL(pkgPath + '/package.json'), '.' + expansion, pkg, null, 865 packageImportsResolve(request, pathToFileURL(parent.filename), 1043 moduleURL = pathToFileURL(filename); 1123 const moduleURL = pathToFileURL(filename); 1140 const moduleURL = pathToFileURL(filename);
|
D | helpers.js | 23 const { pathToFileURL, fileURLToPath, URL } = require('internal/url'); 190 return pathToFileURL(referrer).href;
|
/third_party/node/lib/internal/modules/esm/ |
D | resolve.js | 42 const { URL, pathToFileURL, fileURLToPath } = require('internal/url'); 282 const mainUrl = pathToFileURL(resolve(dirPath, main)); 590 packageJSONUrl = pathToFileURL(packageConfig.pjsonPath); 693 const packageJSONUrl = pathToFileURL(packageConfig.pjsonPath); 872 parentURL = pathToFileURL(`${process.cwd()}/`).href; 917 url = pathToFileURL(
|
D | loader.js | 24 const { URL, pathToFileURL, isURLInstance } = require('internal/url'); 155 url = pathToFileURL(`${process.cwd()}/[eval${++this.evalIndex}]`).href
|
/third_party/node/lib/internal/source_map/ |
D | source_map_cache.js | 39 const { fileURLToPath, pathToFileURL, URL } = require('internal/url'); 223 sourceURL = pathToFileURL(sourceURL).href;
|
/third_party/node/test/common/ |
D | inspector-helper.js | 9 const { pathToFileURL } = require('url'); 178 url : pathToFileURL(url).toString(); 324 return pathToFileURL(this.scriptPath());
|
12