Home
last modified time | relevance | path

Searched refs:fileURLToPath (Results 1 – 25 of 26) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-url-fileurltopath.js8 assert.throws(() => url.fileURLToPath(arg), {
18 assert.throws(() => url.fileURLToPath('https://a/b/c'), {
26 assert.strictEqual(url.fileURLToPath(withHost), '\\\\host\\a');
28 assert.throws(() => url.fileURLToPath(withHost), {
36 assert.throws(() => url.fileURLToPath('file:///C:/a%2F/'), {
39 assert.throws(() => url.fileURLToPath('file:///C:/a%5C/'), {
42 assert.throws(() => url.fileURLToPath('file:///?:/'), {
46 assert.throws(() => url.fileURLToPath('file:///a%2F/'), {
149 const fromString = url.fileURLToPath(fileURL);
151 const fromURL = url.fileURLToPath(new URL(fileURL));
/third_party/node/lib/internal/modules/esm/
Dresolve.js42 const { URL, pathToFileURL, fileURLToPath } = require('internal/url');
80 const path = fileURLToPath(url);
81 const pkgPath = fileURLToPath(new URL('.', packageJSONUrl));
82 const basePath = fileURLToPath(base);
147 (base ? `"${specifier}" from ` : '') + fileURLToPath(base || specifier),
179 const packageConfig = getPackageConfig(fileURLToPath(packageJSONUrl),
190 const packageJSONPath = fileURLToPath(packageJSONUrl);
256 fileURLToPath(new URL('.', packageJSONUrl)), fileURLToPath(base));
275 const dirPath = fileURLToPath(search);
295 fileURLToPath(base));
[all …]
Dget_format.js14 const { URL, fileURLToPath } = require('internal/url');
71 throw new ERR_UNKNOWN_FILE_EXTENSION(ext, fileURLToPath(url));
Dtranslators.js46 const { fileURLToPath, URL } = require('url');
112 return fileURLToPath(parsed);
185 let filename = internalURLModule.fileURLToPath(new URL(url));
301 fileURLToPath(url) : null;
/third_party/node/lib/internal/source_map/
Dprepare_stack_trace.js26 const { fileURLToPath } = require('internal/url');
95 fileURLToPath(originalSource) : originalSource;
143 fileURLToPath(originalSourcePath) : originalSourcePath;
171 fileURLToPath(originalSourcePath) : originalSourcePath;
Dsource_map_cache.js39 const { fileURLToPath, pathToFileURL, URL } = require('internal/url');
143 const content = fs.readFileSync(fileURLToPath(mapURL), 'utf8');
/third_party/node/test/fixtures/
Dpkgexports.mjs1 import { fileURLToPath } from 'url';
4 const rawRequire = createRequire(fileURLToPath(import.meta.url));
/third_party/node/test/es-module/
Dtest-esm-child-process-fork-main.mjs5 import { fileURLToPath } from 'url';
8 const filename = fileURLToPath(import.meta.url);
Dtest-esm-no-addons.mjs4 import { fileURLToPath } from 'url';
11 new Worker(fileURLToPath(import.meta.url), { execArgv });
Dtest-esm-loader-side-effect.mjs4 import { fileURLToPath } from 'url';
24 const worker = new Worker(fileURLToPath(import.meta.url));
Dtest-esm-specifiers.mjs6 import { fileURLToPath } from 'url';
48 fileURLToPath(import.meta.url),
Dtest-esm-json-cache.mjs7 import { fileURLToPath as fromURL } from 'url';
/third_party/node/test/doctool/
Dtest-apilinks.mjs9 import { fileURLToPath } from 'url';
11 const script = fileURLToPath(
Dtest-doctool-versions.mjs8 import { fileURLToPath } from 'url';
12 const versionsTool = fileURLToPath(
/third_party/node/lib/internal/modules/cjs/
Dhelpers.js23 const { pathToFileURL, fileURLToPath, URL } = require('internal/url');
84 filepath = fileURLToPath(destination);
Dloader.js78 const { pathToFileURL, fileURLToPath, isURLInstance } = require('internal/url');
913 const filename = fileURLToPath(resolved);
1180 filepath = fileURLToPath(filename);
/third_party/node/lib/internal/
Dworker.js56 const { fileURLToPath, isURLInstance, pathToFileURL } = require('internal/url');
154 filename = fileURLToPath(filename);
Durl.js1366 function fileURLToPath(path) { function
1452 return fileURLToPath(fileURLOrPath);
1480 fileURLToPath, property
/third_party/node/doc/api/
Durl.md957 ### `url.fileURLToPath(url)`
969 import { fileURLToPath } from 'url';
971 const __filename = fileURLToPath(import.meta.url);
974 fileURLToPath('file:///C:/path/'); // Correct: C:\path\ (Windows)
977 fileURLToPath('file://nas/foo.txt'); // Correct: \\nas\foo.txt (Windows)
980 fileURLToPath('file:///你好.txt'); // Correct: /你好.txt (POSIX)
983 fileURLToPath('file:///hello world'); // Correct: /hello world (POSIX)
987 const { fileURLToPath } = require('url');
989 fileURLToPath('file:///C:/path/'); // Correct: C:\path\ (Windows)
992 fileURLToPath('file://nas/foo.txt'); // Correct: \\nas\foo.txt (Windows)
[all …]
Dmodules.md239 2. let RESOLVED_PATH = fileURLToPath(RESOLVED)
/third_party/node/lib/
Durl.js51 fileURLToPath,
992 fileURLToPath, property
/third_party/node/lib/internal/debugger/
Dinspect_repl.js56 const { fileURLToPath } = require('internal/url');
135 fileURLToPath(filenameOrURL) : filenameOrURL;
/third_party/node/tools/
Dlint-md.mjs3 import { URL as URL$1, fileURLToPath, pathToFileURL } from 'url';
19418 throw new ERR_UNKNOWN_FILE_EXTENSION(ext, fileURLToPath(url))
19464 const pjsonPath = fileURLToPath(pjsonUrl);
19472 base ? ` imported from ${fileURLToPath(base)}` : ''
19490 const path = fileURLToPath(url.href);
19491 const pkgPath = fileURLToPath(new URL$1('.', packageJsonUrl));
19492 const basePath = fileURLToPath(base);
19582 (base ? `"${specifier}" from ` : '') + fileURLToPath(base || specifier),
19618 fileURLToPath(packageJsonUrl),
19631 const packageJsonPath = fileURLToPath(packageJsonUrl);
[all …]
/third_party/node/doc/changelogs/
DCHANGELOG_V10.md772 …om/nodejs/node/commit/3f51a60092)] - **url**: return backslashes from fileURLToPath on win (Kevin …
1792 * Added `url.fileURLToPath(url)` and `url.pathToFileURL(path)`. These methods
2050 …/f1b1b73c2b)] - **(SEMVER-MINOR)** **url**: provide pathToFileURL and fileURLToPath (guybedford) […
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/asciidoctor-chunker/
Dasciidoctor-chunker.js4 …then((e=>C.writeFile(s,e.default))).catch((e=>{const t=i.dirname((0,f.fileURLToPath)("file:///User…

12