mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
This reverts commit 63bc468365
.
This commit is contained in:
parent
f6caf4883d
commit
2a038eafcd
3 changed files with 3 additions and 3 deletions
2
cli/js/lib.deno.shared_globals.d.ts
vendored
2
cli/js/lib.deno.shared_globals.d.ts
vendored
|
@ -1172,7 +1172,7 @@ interface URL {
|
|||
|
||||
declare const URL: {
|
||||
prototype: URL;
|
||||
new (url: string, base?: string | URL): URL;
|
||||
new (url: string | URL, base?: string | URL): URL;
|
||||
createObjectURL(object: any): string;
|
||||
revokeObjectURL(url: string): void;
|
||||
};
|
||||
|
|
|
@ -430,5 +430,5 @@ export function parse(path: string): ParsedPath {
|
|||
* are ignored.
|
||||
*/
|
||||
export function fromFileUrl(url: string | URL): string {
|
||||
return new URL(url.toString()).pathname;
|
||||
return new URL(url).pathname;
|
||||
}
|
||||
|
|
|
@ -908,7 +908,7 @@ export function parse(path: string): ParsedPath {
|
|||
* are ignored.
|
||||
*/
|
||||
export function fromFileUrl(url: string | URL): string {
|
||||
return new URL(url.toString()).pathname
|
||||
return new URL(url).pathname
|
||||
.replace(/^\/*([A-Za-z]:)(\/|$)/, "$1/")
|
||||
.replace(/\//g, "\\");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue