mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
Fix definition of URL constructor (#6653)
This commit is contained in:
parent
dbc2372cde
commit
5c43131be1
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
|
@ -1236,7 +1236,7 @@ interface URL {
|
|||
|
||||
declare const URL: {
|
||||
prototype: URL;
|
||||
new (url: string | URL, base?: string | URL): URL;
|
||||
new (url: string, base?: string | URL): URL;
|
||||
createObjectURL(object: any): string;
|
||||
revokeObjectURL(url: string): void;
|
||||
};
|
||||
|
|
|
@ -435,5 +435,5 @@ export function parse(path: string): ParsedPath {
|
|||
* are ignored.
|
||||
*/
|
||||
export function fromFileUrl(url: string | URL): string {
|
||||
return new URL(url).pathname;
|
||||
return new URL(String(url)).pathname;
|
||||
}
|
||||
|
|
|
@ -914,7 +914,7 @@ export function parse(path: string): ParsedPath {
|
|||
* are ignored.
|
||||
*/
|
||||
export function fromFileUrl(url: string | URL): string {
|
||||
return new URL(url).pathname
|
||||
return new URL(String(url)).pathname
|
||||
.replace(/^\/*([A-Za-z]:)(\/|$)/, "$1/")
|
||||
.replace(/\//g, "\\");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue