Home
last modified time | relevance | path

Searched refs:fileUrl (Results 1 – 2 of 2) sorted by relevance

/third_party/node/test/parallel/
Dtest-fs-null-bytes.js85 const fileUrl = new URL('file:///C:/foo\u0000bar'); constant
88 check(fs.access, fs.accessSync, fileUrl);
89 check(fs.access, fs.accessSync, fileUrl, fs.F_OK);
90 check(fs.appendFile, fs.appendFileSync, fileUrl, 'abc');
91 check(fs.chmod, fs.chmodSync, fileUrl, '0644');
92 check(fs.chown, fs.chownSync, fileUrl, 12, 34);
93 check(fs.copyFile, fs.copyFileSync, fileUrl, 'abc');
94 check(fs.copyFile, fs.copyFileSync, 'abc', fileUrl);
95 check(fs.lchown, fs.lchownSync, fileUrl, 12, 34);
96 check(fs.link, fs.linkSync, fileUrl, 'foobar');
[all …]
/third_party/node/test/common/
Dinspector-helper.js176 const fileUrl = url.startsWith('file:') ?
178 if (fileUrl === this.scriptURL().toString()) {